diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2010-04-20 20:21:24 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2010-04-20 20:21:24 (GMT) |
commit | ef3d6fc8dda3ad44c493ed8e372ca9ede5a096df (patch) | |
tree | 10bbf3058e630411def78a5cd653aa4d7e989fbf /src/H5Opkg.h | |
parent | 64af76ef7d19f9377c04c46a52f0175e8336dfb8 (diff) | |
download | hdf5-ef3d6fc8dda3ad44c493ed8e372ca9ede5a096df.zip hdf5-ef3d6fc8dda3ad44c493ed8e372ca9ede5a096df.tar.gz hdf5-ef3d6fc8dda3ad44c493ed8e372ca9ede5a096df.tar.bz2 |
[svn-r18602] Description:
Bring r18600 from trunk to 1.8 branch:
Increment reference count on object header when "fake" object header
chunk proxy is returned from H5O_chunk_protect(). Also, clean up the
interface to H5O_chunk_unprotect by removing the unnecessary 'oh' parameter.
Tested on:
Mac OS X/32 10.6.3 (amazon) w/debug
(h5committested on trunk)
Diffstat (limited to 'src/H5Opkg.h')
-rw-r--r-- | src/H5Opkg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Opkg.h b/src/H5Opkg.h index d60fdb7..262a4eb 100644 --- a/src/H5Opkg.h +++ b/src/H5Opkg.h @@ -550,7 +550,7 @@ H5_DLL herr_t H5O_msg_iterate_real(H5F_t *f, H5O_t *oh, const H5O_msg_class_t *t H5_DLL herr_t H5O_chunk_add(H5F_t *f, hid_t dxpl_id, H5O_t *oh, unsigned idx); H5_DLL H5O_chunk_proxy_t *H5O_chunk_protect(H5F_t *f, hid_t dxpl_id, H5O_t *oh, unsigned idx); -H5_DLL herr_t H5O_chunk_unprotect(H5F_t *f, hid_t dxpl_id, H5O_t *oh, +H5_DLL herr_t H5O_chunk_unprotect(H5F_t *f, hid_t dxpl_id, H5O_chunk_proxy_t *chk_proxy, unsigned chk_flags); H5_DLL herr_t H5O_chunk_update_idx(H5F_t *f, hid_t dxpl_id, H5O_t *oh, unsigned idx); H5_DLL herr_t H5O_chunk_delete(H5F_t *f, hid_t dxpl_id, H5O_t *oh, unsigned idx); |