diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2017-09-30 14:50:58 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2017-09-30 14:50:58 (GMT) |
commit | 744b6b282f087ce23310805dc24ce8f8b351fb61 (patch) | |
tree | ca497bd2a868409b61a849cd8945601497077640 /src/H5Cpkg.h | |
parent | faf723e6d546a280e3fe935626f0de18f1757377 (diff) | |
download | hdf5-744b6b282f087ce23310805dc24ce8f8b351fb61.zip hdf5-744b6b282f087ce23310805dc24ce8f8b351fb61.tar.gz hdf5-744b6b282f087ce23310805dc24ce8f8b351fb61.tar.bz2 |
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.h | 2 |
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 */ |