summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/H5E.c1
-rw-r--r--src/H5Epublic.h3
2 files changed, 3 insertions, 1 deletions
diff --git a/src/H5E.c b/src/H5E.c
index 11c4690..44f35ab 100644
--- a/src/H5E.c
+++ b/src/H5E.c
@@ -60,6 +60,7 @@ static const H5E_major_mesg_t H5E_major_mesg_g[] = {
{H5E_RAGGED, "Ragged array layer"},
{H5E_REFERENCE, "References layer"},
{H5E_VFL, "Virtual File Layer"},
+ {H5E_TBBT, "Threaded, Balanced, Binary Trees"},
};
static const H5E_minor_mesg_t H5E_minor_mesg_g[] = {
diff --git a/src/H5Epublic.h b/src/H5Epublic.h
index da23135..e02145d 100644
--- a/src/H5Epublic.h
+++ b/src/H5Epublic.h
@@ -98,7 +98,8 @@ typedef enum H5E_major_t {
H5E_EFL, /*External file list */
H5E_RAGGED, /*Ragged arrays */
H5E_REFERENCE, /*References */
- H5E_VFL /*Virtual File Layer */
+ H5E_VFL, /*Virtual File Layer */
+ H5E_TBBT /*Threaded, Balanced, Binary Trees */
} H5E_major_t;
/* Declare an enumerated type which holds all the valid minor HDF error codes */