summaryrefslogtreecommitdiffstats
path: root/src/H5Cdbg.c
diff options
context:
space:
mode:
authorlrknox <lrknox>2017-03-30 15:34:48 (GMT)
committerlrknox <lrknox>2017-03-30 15:34:48 (GMT)
commit9afc2d1fc05c0ee87cb27ff1f6179e00b5eb6ac2 (patch)
treecd2aee3b0bbeb88dd91a3d2059492cc804ed2d77 /src/H5Cdbg.c
parent8eef625ef49ac53c6e3c6d41ca8ec3a620db981b (diff)
parent313fedfca18bf1e48da4e3589bb71f76f9e9868f (diff)
downloadhdf5-9afc2d1fc05c0ee87cb27ff1f6179e00b5eb6ac2.zip
hdf5-9afc2d1fc05c0ee87cb27ff1f6179e00b5eb6ac2.tar.gz
hdf5-9afc2d1fc05c0ee87cb27ff1f6179e00b5eb6ac2.tar.bz2
Merge branch 'develop' of https://bitbucket.hdfgroup.org/scm/~lrknox/hdf5_lrk into develop
Diffstat (limited to 'src/H5Cdbg.c')
-rw-r--r--src/H5Cdbg.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/H5Cdbg.c b/src/H5Cdbg.c
index a955eaf..0a98406 100644
--- a/src/H5Cdbg.c
+++ b/src/H5Cdbg.c
@@ -738,9 +738,10 @@ H5C_stats(H5C_t * cache_ptr,
(long long)(cache_ptr->index_scan_restarts));
HDfprintf(stdout,
- "%s cache image creations/loads/size = %d / %d / %Hu\n",
+ "%s cache image creations/reads/loads/size = %d / %d /%d / %Hu\n",
cache_ptr->prefix,
cache_ptr->images_created,
+ cache_ptr->images_read,
cache_ptr->images_loaded,
cache_ptr->last_image_size);
@@ -993,6 +994,7 @@ H5C_stats__reset(H5C_t H5_ATTR_UNUSED * cache_ptr)
cache_ptr->index_scan_restarts = 0;
cache_ptr->images_created = 0;
+ cache_ptr->images_read = 0;
cache_ptr->images_loaded = 0;
cache_ptr->last_image_size = (hsize_t)0;