diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2015-06-29 15:19:34 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2015-06-29 15:19:34 (GMT) |
commit | 89115b11b0ed2f51c6d80305301a60c7cba8c916 (patch) | |
tree | 114c6377c5cfd835d9abf86b62e143c9fb4dd79b /src/H5Cpkg.h | |
parent | 8e94745298c2ceacf80b21f0d16e887217527916 (diff) | |
download | hdf5-89115b11b0ed2f51c6d80305301a60c7cba8c916.zip hdf5-89115b11b0ed2f51c6d80305301a60c7cba8c916.tar.gz hdf5-89115b11b0ed2f51c6d80305301a60c7cba8c916.tar.bz2 |
[svn-r27294] Description:
Clean up parameters to H5C__flush_single_entry: accept cache entry instead
of address, and make new flag for deleting entry from skiplist on destroy
instead of a separate parameter to the routine.
Tested on:
MacOSX/64 10.10.3 (amazon) w/serial & parallel
Linux/32 2.6.x (jam) w/serial & parallel
Diffstat (limited to 'src/H5Cpkg.h')
-rw-r--r-- | src/H5Cpkg.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/H5Cpkg.h b/src/H5Cpkg.h index 6d75222..0dad4bb 100644 --- a/src/H5Cpkg.h +++ b/src/H5Cpkg.h @@ -3770,8 +3770,7 @@ struct H5C_t { /* Package Private Prototypes */ /******************************/ H5_DLL herr_t H5C__flush_single_entry(const H5F_t *f, hid_t dxpl_id, - haddr_t addr, unsigned flags, hbool_t del_entry_from_slist_on_destroy, - int64_t *entry_size_change_ptr); + H5C_cache_entry_t *entry_ptr, unsigned flags, int64_t *entry_size_change_ptr); #endif /* _H5Cpkg_H */ |