diff options
author | David Young <dyoung@hdfgroup.org> | 2019-12-19 20:55:49 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2019-12-19 20:55:49 (GMT) |
commit | d11b347aa77cbcfa2bf782c8856bf559444ad880 (patch) | |
tree | df43489411575f566e0475ad4bb040dc69f623e6 /src/H5trace.c | |
parent | 4281d101c41f80a75143c0d40232383a81afc7f0 (diff) | |
parent | 817235bb60e1f79c4b22b4a6116a1594aa75b81d (diff) | |
download | hdf5-d11b347aa77cbcfa2bf782c8856bf559444ad880.zip hdf5-d11b347aa77cbcfa2bf782c8856bf559444ad880.tar.gz hdf5-d11b347aa77cbcfa2bf782c8856bf559444ad880.tar.bz2 |
Merging in latest from upstream (HDFFV/hdf5:refs/heads/develop)
* commit '817235bb60e1f79c4b22b4a6116a1594aa75b81d': (145 commits)
Remove const
Fix compile error - declaration after executable statement
Adjust cache.c only variables.
Fix include to correct memory calls - big-endian issue.
Update h5debug to retrieve file pointer through VOL framework
Minor whitespace
Remove duplicate instance
Revert and move declaration
Correct struct access
Fix duplicate and varname
Fix compile and test issues from DT
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.
Add release note for sanitizer support
HDFFV-10979 cleanup globals
TRILABS-135 Add clang analyzers
HDFFV-10979 fix global name clash
Fix issues found with ONLY_SHARED_LIBS option
Fix 2010 compile issues
Change from using H5Dcreate to H5Dcreate2
Latest date first in RELEASE.txt
...
Diffstat (limited to 'src/H5trace.c')
-rw-r--r-- | src/H5trace.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/H5trace.c b/src/H5trace.c index 79dfbc8..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; @@ -3000,6 +3006,9 @@ H5_trace(const double *returning, const char *func, const char *type, ...) H5VL_object_get_t get = (H5VL_object_get_t)HDva_arg(ap, int); switch(get) { + case H5VL_OBJECT_GET_FILE: + HDfprintf(out, "H5VL_OBJECT_GET_FILE"); + break; case H5VL_OBJECT_GET_NAME: HDfprintf(out, "H5VL_OBJECT_GET_NAME"); break; |