diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2015-05-15 02:04:33 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2015-05-15 02:04:33 (GMT) |
commit | 8fd9d6b53f44b12204ea2bcd34eeedd3f3d54603 (patch) | |
tree | e9f266734cca431782f6267a8322df6530aa24dc /src/H5FSpkg.h | |
parent | cd1620238c73d616c8ec3c773337e7733b47d3f2 (diff) | |
download | hdf5-8fd9d6b53f44b12204ea2bcd34eeedd3f3d54603.zip hdf5-8fd9d6b53f44b12204ea2bcd34eeedd3f3d54603.tar.gz hdf5-8fd9d6b53f44b12204ea2bcd34eeedd3f3d54603.tar.bz2 |
[svn-r27078] Description:
Clean up H5FS interface, to align w/v3 metadata cache changes
Tested on:
MacOSX/64 10.10.3 (amazon) w/serial & parallel
Linux/32 2.6.* (jam) w/serial & parallel
Diffstat (limited to 'src/H5FSpkg.h')
-rw-r--r-- | src/H5FSpkg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5FSpkg.h b/src/H5FSpkg.h index b6c240e..78afde8 100644 --- a/src/H5FSpkg.h +++ b/src/H5FSpkg.h @@ -221,7 +221,7 @@ H5FL_EXTERN(H5FS_t); /******************************/ /* Free space manager header routines */ -H5_DLL H5FS_t *H5FS_new(const H5F_t *f, uint16_t nclasses, +H5_DLL H5FS_t *H5FS__new(const H5F_t *f, uint16_t nclasses, const H5FS_section_class_t *classes[], void *cls_init_udata); H5_DLL herr_t H5FS_incr(H5FS_t *fspace); H5_DLL herr_t H5FS_decr(H5FS_t *fspace); @@ -231,7 +231,7 @@ H5_DLL herr_t H5FS_dirty(H5FS_t *fspace); H5_DLL H5FS_sinfo_t *H5FS_sinfo_new(H5F_t *f, H5FS_t *fspace); /* Routines for destroying structures */ -H5_DLL herr_t H5FS_hdr_dest(H5FS_t *hdr); +H5_DLL herr_t H5FS__hdr_dest(H5FS_t *hdr); H5_DLL herr_t H5FS_sinfo_dest(H5FS_sinfo_t *sinfo); /* Sanity check routines */ |