summaryrefslogtreecommitdiffstats
path: root/src/H5trace.c
diff options
context:
space:
mode:
authorNeil Fortner <nfortne2@hdfgroup.org>2019-12-12 21:17:25 (GMT)
committerNeil Fortner <nfortne2@hdfgroup.org>2019-12-12 21:52:21 (GMT)
commitce653ff82b7dd52b8e36a5eff7b1728c4b75d9f7 (patch)
tree090eb5eb5cff5f166df5d4b18da0bfc0de6e4816 /src/H5trace.c
parent8026c67a1c34e9d3dcaffe12f22d00e4ced64878 (diff)
downloadhdf5-ce653ff82b7dd52b8e36a5eff7b1728c4b75d9f7.zip
hdf5-ce653ff82b7dd52b8e36a5eff7b1728c4b75d9f7.tar.gz
hdf5-ce653ff82b7dd52b8e36a5eff7b1728c4b75d9f7.tar.bz2
Modify H5VL initialization routines to initialize all VOL-managed object
types. Modify H5VLwrap_register() to reject non-VOL-managed object types. Also fix overisights in h5trace.c from previous changes.
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 65e267e..2fcf82f 100644
--- a/src/H5trace.c
+++ b/src/H5trace.c
@@ -2841,6 +2841,9 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
H5VL_file_specific_t specific = (H5VL_file_specific_t)HDva_arg(ap, int);
switch(specific) {
+ case H5VL_FILE_POST_OPEN:
+ HDfprintf(out, "H5VL_FILE_POST_OPEN");
+ break;
case H5VL_FILE_FLUSH:
HDfprintf(out, "H5VL_FILE_FLUSH");
break;
@@ -2859,6 +2862,9 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
case H5VL_FILE_DELETE:
HDfprintf(out, "H5VL_FILE_DELETE");
break;
+ case H5VL_FILE_IS_EQUAL:
+ HDfprintf(out, "H5VL_FILE_IS_EQUAL");
+ break;
default:
HDfprintf(out, "%ld", (long)specific);
break;