[svn-r2220] Added a major error number for TBBT trees

This commit is contained in:
Quincey Koziol 2000-05-08 18:06:54 -05:00
parent 96c529af87
commit bb7e34fad8
2 changed files with 3 additions and 1 deletions

View File

@ -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[] = {

View File

@ -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 */