diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2016-04-04 22:22:56 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2016-04-04 22:22:56 (GMT) |
commit | c7d495163419f785a2fe5237991c4ab6e6286091 (patch) | |
tree | ce2bf91d97d9a9290680b4a80295fe1aa1ec5f70 /src/H5Opkg.h | |
parent | 2221a9a96e1fc06290ba0bf2e68f9489f071483e (diff) | |
download | hdf5-c7d495163419f785a2fe5237991c4ab6e6286091.zip hdf5-c7d495163419f785a2fe5237991c4ab6e6286091.tar.gz hdf5-c7d495163419f785a2fe5237991c4ab6e6286091.tar.bz2 |
[svn-r29626] Description:
Revise method of invoking object flush callback.
Tested on:
MacOSX/64 10.11.4 (amazon) w/serial & parallel
(h5committest forthcoming)
Diffstat (limited to 'src/H5Opkg.h')
-rw-r--r-- | src/H5Opkg.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/H5Opkg.h b/src/H5Opkg.h index 5bce19e..14bb342 100644 --- a/src/H5Opkg.h +++ b/src/H5Opkg.h @@ -325,7 +325,7 @@ typedef struct H5O_obj_class_t { void *(*create)(H5F_t *, void *, H5G_loc_t *, hid_t ); /*create an object of this class */ H5O_loc_t *(*get_oloc)(hid_t ); /*get the object header location for an object */ herr_t (*bh_info)(const H5O_loc_t *loc, hid_t dxpl_id, H5O_t *oh, H5_ih_info_t *bh_info); /*get the index & heap info for an object */ - herr_t (*flush)(H5G_loc_t *loc, hid_t dxpl_id); /*flush an opened object of this class */ + herr_t (*flush)(void *obj_ptr, hid_t dxpl_id); /*flush an opened object of this class */ } H5O_obj_class_t; /* Node in skip list to map addresses from one file to another during object header copy */ @@ -606,7 +606,6 @@ H5_DLL herr_t H5O_attr_link(H5F_t *f, hid_t dxpl_id, H5O_t *open_oh, void *_mesg H5_DLL herr_t H5O_attr_count_real(H5F_t *f, hid_t dxpl_id, H5O_t *oh, hsize_t *nattrs); - /* These functions operate on object locations */ H5_DLL H5O_loc_t *H5O_get_loc(hid_t id); |