summaryrefslogtreecommitdiffstats
path: root/src/H5trace.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@koziol.gov>2019-08-23 21:54:52 (GMT)
committerJerome Soumagne <jsoumagne@hdfgroup.org>2019-10-08 20:18:42 (GMT)
commitb571cf6c3851357d86cd5a231351d75177af29a4 (patch)
treec45720e47289f2ccf585119c8335148712304468 /src/H5trace.c
parent1b766420f1c5064b0ad2f126c6d62cba8373564f (diff)
downloadhdf5-b571cf6c3851357d86cd5a231351d75177af29a4.zip
hdf5-b571cf6c3851357d86cd5a231351d75177af29a4.tar.gz
hdf5-b571cf6c3851357d86cd5a231351d75177af29a4.tar.bz2
Adapt Jerome's "file info" H5VL 'get' query to retrieve container token info.
Remove "by address" location for VOL operations. (Switching to "by token")
Diffstat (limited to 'src/H5trace.c')
-rw-r--r--src/H5trace.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/H5trace.c b/src/H5trace.c
index a167d43..fe2d622 100644
--- a/src/H5trace.c
+++ b/src/H5trace.c
@@ -2754,18 +2754,21 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
H5VL_file_get_t get = (H5VL_file_get_t)HDva_arg(ap, int);
switch(get) {
+ case H5VL_FILE_GET_CONT_INFO:
+ HDfprintf(out, "H5VL_FILE_GET_CONT_INFO");
+ break;
case H5VL_FILE_GET_FAPL:
HDfprintf(out, "H5VL_FILE_GET_FAPL");
break;
case H5VL_FILE_GET_FCPL:
HDfprintf(out, "H5VL_FILE_GET_FCPL");
break;
- case H5VL_FILE_GET_INTENT:
- HDfprintf(out, "H5VL_FILE_GET_INTENT");
- break;
case H5VL_FILE_GET_FILENO:
HDfprintf(out, "H5VL_FILE_GET_FILENO");
break;
+ case H5VL_FILE_GET_INTENT:
+ HDfprintf(out, "H5VL_FILE_GET_INTENT");
+ break;
case H5VL_FILE_GET_NAME:
HDfprintf(out, "H5VL_FILE_GET_NAME");
break;