summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-05-08 23:06:54 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-05-08 23:06:54 (GMT)
commitbb7e34fad8b5f104c424236ea8dbd9860392ddc6 (patch)
tree412ed55abdbcf8ec5407c05fb0aeff77df1e4135 /src
parent96c529af87fced0de58b3d9e09ae1fc376cba73d (diff)
downloadhdf5-bb7e34fad8b5f104c424236ea8dbd9860392ddc6.zip
hdf5-bb7e34fad8b5f104c424236ea8dbd9860392ddc6.tar.gz
hdf5-bb7e34fad8b5f104c424236ea8dbd9860392ddc6.tar.bz2
[svn-r2220] Added a major error number for TBBT trees
Diffstat (limited to 'src')
-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 */