diff options
-rw-r--r-- | src/H5Adeprec.c | 1 | ||||
-rw-r--r-- | src/H5F.c | 1 | ||||
-rw-r--r-- | src/H5Fint.c | 1 | ||||
-rw-r--r-- | src/H5Gloc.c | 1 | ||||
-rw-r--r-- | src/H5Gname.c | 1 | ||||
-rw-r--r-- | src/H5Gtest.c | 1 | ||||
-rw-r--r-- | src/H5O.c | 2 | ||||
-rw-r--r-- | src/H5T.c | 1 | ||||
-rw-r--r-- | src/H5trace.c | 17 |
9 files changed, 26 insertions, 0 deletions
diff --git a/src/H5Adeprec.c b/src/H5Adeprec.c index ae0f041..0cedf7f 100644 --- a/src/H5Adeprec.c +++ b/src/H5Adeprec.c @@ -322,6 +322,7 @@ H5Aget_num_attrs(hid_t loc_id) case H5I_ATTR: case H5I_REFERENCE: case H5I_VFL: + case H5I_QUERY: case H5I_GENPROP_CLS: case H5I_GENPROP_LST: case H5I_ERROR_CLASS: @@ -665,6 +665,7 @@ H5Fflush(hid_t object_id, H5F_scope_t scope) case H5I_DATASPACE: case H5I_REFERENCE: case H5I_VFL: + case H5I_QUERY: case H5I_GENPROP_CLS: case H5I_GENPROP_LST: case H5I_ERROR_CLASS: diff --git a/src/H5Fint.c b/src/H5Fint.c index c17267d..a5621b3 100644 --- a/src/H5Fint.c +++ b/src/H5Fint.c @@ -430,6 +430,7 @@ H5F_get_objects_cb(void *obj_ptr, hid_t obj_id, void *key) case H5I_DATASPACE: case H5I_REFERENCE: case H5I_VFL: + case H5I_QUERY: case H5I_GENPROP_CLS: case H5I_GENPROP_LST: case H5I_ERROR_CLASS: diff --git a/src/H5Gloc.c b/src/H5Gloc.c index eb8cd78..7cd48eb 100644 --- a/src/H5Gloc.c +++ b/src/H5Gloc.c @@ -248,6 +248,7 @@ H5G_loc(hid_t loc_id, H5G_loc_t *loc) case H5I_UNINIT: case H5I_BADID: case H5I_VFL: + case H5I_QUERY: case H5I_NTYPES: default: HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid object ID") diff --git a/src/H5Gname.c b/src/H5Gname.c index aff9d31..cb436a2 100644 --- a/src/H5Gname.c +++ b/src/H5Gname.c @@ -839,6 +839,7 @@ H5G_name_replace_cb(void *obj_ptr, hid_t obj_id, void *key) case H5I_ATTR: case H5I_REFERENCE: case H5I_VFL: + case H5I_QUERY: case H5I_GENPROP_CLS: case H5I_GENPROP_LST: case H5I_ERROR_CLASS: diff --git a/src/H5Gtest.c b/src/H5Gtest.c index a8796fb..976009a 100644 --- a/src/H5Gtest.c +++ b/src/H5Gtest.c @@ -557,6 +557,7 @@ H5G__user_path_test(hid_t obj_id, char *user_path, size_t *user_path_len, unsign case H5I_ATTR: case H5I_REFERENCE: case H5I_VFL: + case H5I_QUERY: case H5I_GENPROP_CLS: case H5I_GENPROP_LST: case H5I_ERROR_CLASS: @@ -1067,6 +1067,7 @@ H5Oclose(hid_t object_id) case H5I_ATTR: case H5I_REFERENCE: case H5I_VFL: + case H5I_QUERY: case H5I_GENPROP_CLS: case H5I_GENPROP_LST: case H5I_ERROR_CLASS: @@ -2476,6 +2477,7 @@ H5O_get_loc(hid_t object_id) case H5I_ATTR: case H5I_REFERENCE: case H5I_VFL: + case H5I_QUERY: case H5I_GENPROP_CLS: case H5I_GENPROP_LST: case H5I_ERROR_CLASS: @@ -1679,6 +1679,7 @@ H5Tcopy(hid_t type_id) case H5I_ATTR: case H5I_REFERENCE: case H5I_VFL: + case H5I_QUERY: case H5I_GENPROP_CLS: case H5I_GENPROP_LST: case H5I_ERROR_CLASS: diff --git a/src/H5trace.c b/src/H5trace.c index b379e39..5f09a5c 100644 --- a/src/H5trace.c +++ b/src/H5trace.c @@ -1281,6 +1281,10 @@ H5_trace(const double *returning, const char *func, const char *type, ...) fprintf(out, "%ld (file driver)", (long)obj); break; + case H5I_QUERY: + fprintf(out, "%ld (query)", (long)obj); + break; + case H5I_GENPROP_CLS: fprintf(out, "%ld (genprop class)", (long)obj); break; @@ -1462,6 +1466,10 @@ H5_trace(const double *returning, const char *func, const char *type, ...) fprintf(out, "H5I_VFL"); break; + case H5I_QUERY: + fprintf(out, "H5I_QUERY"); + break; + case H5I_GENPROP_CLS: fprintf(out, "H5I_GENPROP_CLS"); break; @@ -1779,9 +1787,15 @@ H5_trace(const double *returning, const char *func, const char *type, ...) case H5Q_TYPE_ATTR_NAME: fprintf(out, "H5Q_TYPE_ATTR_NAME"); break; + case H5Q_TYPE_ATTR_VALUE: + fprintf(out, "H5Q_TYPE_ATTR_VALUE"); + break; case H5Q_TYPE_LINK_NAME: fprintf(out, "H5Q_TYPE_LINK_NAME"); break; + case H5Q_TYPE_MISC: + fprintf(out, "H5Q_TYPE_MISC"); + break; default: fprintf(out, "BADTYPE(%d)", qtype); break; @@ -1834,6 +1848,9 @@ H5_trace(const double *returning, const char *func, const char *type, ...) case H5Q_COMBINE_OR: fprintf(out, "H5Q_COMBINE_OR"); break; + case H5Q_SINGLETON: + fprintf(out, "H5Q_SINGLETON"); + break; default: fprintf(out, "BADTYPE(%d)", qcomb); break; |