summaryrefslogtreecommitdiffstats
path: root/src/H5trace.c
diff options
context:
space:
mode:
authorJerome Soumagne <jsoumagne@hdfgroup.org>2019-05-22 18:32:25 (GMT)
committerJerome Soumagne <jsoumagne@hdfgroup.org>2019-10-08 20:18:57 (GMT)
commitfd4f6253ce5ed029263dfa47681fcd48fe2d1bc7 (patch)
tree9e6d5e6b08e76220c4102313df59097c948c5754 /src/H5trace.c
parentf4bc0af55cfe3fdbf2e9963849e84cf166f6d41d (diff)
downloadhdf5-fd4f6253ce5ed029263dfa47681fcd48fe2d1bc7.zip
hdf5-fd4f6253ce5ed029263dfa47681fcd48fe2d1bc7.tar.gz
hdf5-fd4f6253ce5ed029263dfa47681fcd48fe2d1bc7.tar.bz2
Add H5VL_OBJECT_GET_TYPE to get object type
Add H5VL_OBJECT_LOOKUP to lookup objects
Diffstat (limited to 'src/H5trace.c')
-rw-r--r--src/H5trace.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/H5trace.c b/src/H5trace.c
index fe2d622..038263c 100644
--- a/src/H5trace.c
+++ b/src/H5trace.c
@@ -2966,6 +2966,9 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
case H5VL_OBJECT_GET_NAME:
HDfprintf(out, "H5VL_OBJECT_GET_NAME");
break;
+ case H5VL_OBJECT_GET_TYPE:
+ HDfprintf(out, "H5VL_OBJECT_GET_TYPE");
+ break;
default:
HDfprintf(out, "%ld", (long)get);
break;
@@ -2989,6 +2992,9 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
case H5VL_OBJECT_EXISTS:
HDfprintf(out, "H5VL_OBJECT_EXISTS");
break;
+ case H5VL_OBJECT_LOOKUP:
+ HDfprintf(out, "H5VL_OBJECT_LOOKUP");
+ break;
case H5VL_OBJECT_VISIT:
HDfprintf(out, "H5VL_OBJECT_VISIT");
break;