diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-06-05 19:06:24 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-06-05 19:06:24 (GMT) |
commit | 60c6500fad6e102ed3535f12d3f3edf55ff6fed6 (patch) | |
tree | a2bbe48ab81cd52ad8a6de3f668f4bf2e3448bb7 /src/H5FDprivate.h | |
parent | 085f120d19bd0c465b9f3d518637612febc3ae01 (diff) | |
download | hdf5-60c6500fad6e102ed3535f12d3f3edf55ff6fed6.zip hdf5-60c6500fad6e102ed3535f12d3f3edf55ff6fed6.tar.gz hdf5-60c6500fad6e102ed3535f12d3f3edf55ff6fed6.tar.bz2 |
[svn-r8614] Purpose:
Refactor code
Description:
Move chunk and contiguous cached raw data from file information to dataset
information. This simplifies a number of internal interfaces, aligns the
code with it's purpose better and should allow more optimizations to the
chunked data I/O performance.
Platforms tested:
Solaris 2.7 (arabica)
FreeBSD 4.10 (sleipnir)
h5committest
Diffstat (limited to 'src/H5FDprivate.h')
-rw-r--r-- | src/H5FDprivate.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/H5FDprivate.h b/src/H5FDprivate.h index eafb10d..f115be4 100644 --- a/src/H5FDprivate.h +++ b/src/H5FDprivate.h @@ -38,6 +38,10 @@ #define IS_H5FD_MPI(file) \ (IS_H5FD_MPIO(file) || IS_H5FD_MPIPOSIX(file) || IS_H5FD_FPHDF5(file)) +/* Forward declarations for prototype arguments */ +struct H5P_genplist_t; + +/* Prototypes */ H5_DLL int H5FD_term_interface(void); H5_DLL H5FD_class_t *H5FD_get_class(hid_t id); H5_DLL hsize_t H5FD_sb_size(H5FD_t *file); |