diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-08-21 11:33:44 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-08-21 11:33:44 (GMT) |
commit | d96910fe93972d48a8cfef0a44a57a803b07f031 (patch) | |
tree | c6e26ce08bcd26bf71f4fc75edcbabc42d168e02 /src/H5FDprivate.h | |
parent | 9316a67a8901daf5e85fc2947c666b4e10c04814 (diff) | |
download | hdf5-d96910fe93972d48a8cfef0a44a57a803b07f031.zip hdf5-d96910fe93972d48a8cfef0a44a57a803b07f031.tar.gz hdf5-d96910fe93972d48a8cfef0a44a57a803b07f031.tar.bz2 |
[svn-r17404] Description:
Bring r17402 & r17403 from trunk to 1.8 branch:
r17402:
Switch from using a 'flags' parameter to the flush routine(s), to just
using a single 'closing' boolean parameter, since that's all we're doing with
the flags anyway and this makes things more obvious.
r17403:
Eliminate 'closing' flag to dataset flush routine, since all cached
dataset information has already been flushed when a file is closed and the
datasets themselves will be closed (and the dataset caches destroyed).
Skip calling more flush routines when the file is closing, in preparation
for eventual separation of the 'flush' concept from the 'shutdown the cache'
concept.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
(h5committest performed on trunk)
Diffstat (limited to 'src/H5FDprivate.h')
-rw-r--r-- | src/H5FDprivate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDprivate.h b/src/H5FDprivate.h index 6b2e4fe..fc38566 100644 --- a/src/H5FDprivate.h +++ b/src/H5FDprivate.h @@ -72,7 +72,7 @@ H5_DLL herr_t H5FD_read(H5FD_t *file, hid_t dxpl_id, H5FD_mem_t type, haddr_t addr, size_t size, void *buf/*out*/); H5_DLL herr_t H5FD_write(H5FD_t *file, hid_t dxpl_id, H5FD_mem_t type, haddr_t addr, size_t size, const void *buf); -H5_DLL herr_t H5FD_flush(H5FD_t *file, hid_t dxpl_id, unsigned closing); +H5_DLL herr_t H5FD_flush(H5FD_t *file, hid_t dxpl_id, hbool_t closing); H5_DLL herr_t H5FD_truncate(H5FD_t *file, hid_t dxpl_id, hbool_t closing); H5_DLL herr_t H5FD_get_fileno(const H5FD_t *file, unsigned long *filenum); H5_DLL herr_t H5FD_get_vfd_handle(H5FD_t *file, hid_t fapl, void** file_handle); |