diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2015-05-02 06:18:43 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2015-05-02 06:18:43 (GMT) |
commit | 5cb629e6dd16673c8872093e30865b566704e578 (patch) | |
tree | 9b9ab1905f776f7b73af8b12c3f64ddfb8ad1185 /src/H5Dpkg.h | |
parent | f77bb92cc1ae7c01349caf5d51f88212c1dabb83 (diff) | |
download | hdf5-5cb629e6dd16673c8872093e30865b566704e578.zip hdf5-5cb629e6dd16673c8872093e30865b566704e578.tar.gz hdf5-5cb629e6dd16673c8872093e30865b566704e578.tar.bz2 |
[svn-r26995] Description:
Clean up chunk 'prune by extent' and flush code, and make the rehashing
routine 'update cache' hold onto more chunks, instead of evicting them as
aggressively.
Tested on:
MacOSX/64 10.10.3 (amazon) w/serial & parallel
(h5committest forthcoming)
Diffstat (limited to 'src/H5Dpkg.h')
-rw-r--r-- | src/H5Dpkg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dpkg.h b/src/H5Dpkg.h index 53c9780..94f19e4 100644 --- a/src/H5Dpkg.h +++ b/src/H5Dpkg.h @@ -496,7 +496,7 @@ typedef struct { typedef struct H5D_rdcc_ent_t { hbool_t locked; /*entry is locked in cache */ hbool_t dirty; /*needs to be written to disk? */ - hbool_t deleted; /*chunk about to be deleted (do not flush) */ + hbool_t deleted; /*chunk about to be deleted */ hsize_t offset[H5O_LAYOUT_NDIMS]; /*chunk name */ uint32_t rd_count; /*bytes remaining to be read */ uint32_t wr_count; /*bytes remaining to be written */ |