summaryrefslogtreecommitdiffstats
path: root/src/H5Cpkg.h
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/H5Cpkg.h
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/H5Cpkg.h')
-rw-r--r--src/H5Cpkg.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5Cpkg.h b/src/H5Cpkg.h
index fdb14a5..d431887 100644
--- a/src/H5Cpkg.h
+++ b/src/H5Cpkg.h
@@ -4746,6 +4746,7 @@ struct H5C_t {
H5C_cache_entry_t * LRU_head_ptr;
H5C_cache_entry_t * LRU_tail_ptr;
+#if H5C_MAINTAIN_CLEAN_AND_DIRTY_LRU_LISTS
/* Fields for clean LRU list of entries */
uint32_t cLRU_list_len;
size_t cLRU_list_size;
@@ -4757,6 +4758,7 @@ struct H5C_t {
size_t dLRU_list_size;
H5C_cache_entry_t * dLRU_head_ptr;
H5C_cache_entry_t * dLRU_tail_ptr;
+#endif /* H5C_MAINTAIN_CLEAN_AND_DIRTY_LRU_LISTS */
#ifdef H5_HAVE_PARALLEL
/* Fields for collective metadata reads */