diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-10-07 13:57:18 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-10-07 13:57:18 (GMT) |
commit | a5d1c5c576a7a26ef78dfb4715c2b1f2cbcced3a (patch) | |
tree | d7b9efd00dc6a81b4312d75a64e09ba13e93d052 /src/H5FDprivate.h | |
parent | 4ee4926dbde7184de260f507cc42afb4738c0f82 (diff) | |
download | hdf5-a5d1c5c576a7a26ef78dfb4715c2b1f2cbcced3a.zip hdf5-a5d1c5c576a7a26ef78dfb4715c2b1f2cbcced3a.tar.gz hdf5-a5d1c5c576a7a26ef78dfb4715c2b1f2cbcced3a.tar.bz2 |
[svn-r7560] Purpose:
Add feature
Description:
Add H5Fget_freespace() routine, to check the amount of free space in a
file. This information is only valid until the file is closed currently,
however (until we start recording the free space information in the file
itself).
Platforms tested:
FreeBSD 4.9 (sleipnir)
h5committest
Diffstat (limited to 'src/H5FDprivate.h')
-rw-r--r-- | src/H5FDprivate.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5FDprivate.h b/src/H5FDprivate.h index 447bef9..d02ba35 100644 --- a/src/H5FDprivate.h +++ b/src/H5FDprivate.h @@ -51,5 +51,6 @@ H5_DLL herr_t H5FD_write(H5FD_t *file, H5FD_mem_t type, hid_t dxpl_id, haddr_t a H5_DLL herr_t H5FD_flush(H5FD_t *file, hid_t dxpl_id, unsigned 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); +H5_DLL hssize_t H5FD_get_freespace(H5FD_t *file); #endif /* !_H5FDprivate_H */ |