summaryrefslogtreecommitdiffstats
path: root/src/H5Cdbg.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2017-10-02 16:55:13 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2017-10-02 16:55:13 (GMT)
commit19ee2f9dc8ce4352b3ec82c667abecb47a1d9684 (patch)
treed1278c510360f4a807a255d6f9c16d6cda79867e /src/H5Cdbg.c
parent38e2f0e7847556ba06ee72e9451a1bab022c472e (diff)
parent9d6ba29a01079e0f81ffa530605d8cd830378f9c (diff)
downloadhdf5-19ee2f9dc8ce4352b3ec82c667abecb47a1d9684.zip
hdf5-19ee2f9dc8ce4352b3ec82c667abecb47a1d9684.tar.gz
hdf5-19ee2f9dc8ce4352b3ec82c667abecb47a1d9684.tar.bz2
Merging in latest from upstream (HDFFV/hdf5:refs/heads/develop)
* commit '9d6ba29a01079e0f81ffa530605d8cd830378f9c': Better segregate clean & dirty LRU lists so that they are only defined when the H5C_MAINTAIN_CLEAN_AND_DIRTY_LRU_LISTS macro is defined.
Diffstat (limited to 'src/H5Cdbg.c')
-rw-r--r--src/H5Cdbg.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5Cdbg.c b/src/H5Cdbg.c
index 4a08d9b..08c70d9 100644
--- a/src/H5Cdbg.c
+++ b/src/H5Cdbg.c
@@ -716,6 +716,7 @@ H5C_stats(H5C_t * cache_ptr,
(long)(cache_ptr->LRU_list_size),
(unsigned long)(cache_ptr->LRU_list_len));
+#if H5C_MAINTAIN_CLEAN_AND_DIRTY_LRU_LISTS
HDfprintf(stdout,
"%s current clean LRU size / length = %ld / %lu\n",
cache_ptr->prefix,
@@ -727,6 +728,7 @@ H5C_stats(H5C_t * cache_ptr,
cache_ptr->prefix,
(long)(cache_ptr->dLRU_list_size),
(unsigned long)(cache_ptr->dLRU_list_len));
+#endif /* H5C_MAINTAIN_CLEAN_AND_DIRTY_LRU_LISTS */
HDfprintf(stdout,
"%s Total hits / misses / hit_rate = %ld / %ld / %f\n",