diff options
author | Peter Cao <xcao@hdfgroup.org> | 2007-05-30 21:35:57 (GMT) |
---|---|---|
committer | Peter Cao <xcao@hdfgroup.org> | 2007-05-30 21:35:57 (GMT) |
commit | 461b896779cb585cf47236cdcfc271a98d3ca080 (patch) | |
tree | 9ad39b91c1b22826d0281ea8d916abaac5f03b5f /src/H5Oprivate.h | |
parent | 7afc8fc6ebaaedf4d077b8ca1558e6bac8afc373 (diff) | |
download | hdf5-461b896779cb585cf47236cdcfc271a98d3ca080.zip hdf5-461b896779cb585cf47236cdcfc271a98d3ca080.tar.gz hdf5-461b896779cb585cf47236cdcfc271a98d3ca080.tar.bz2 |
[svn-r13821]
Fixed a bug at copying shared reg_ref attribute. The ref values of an attribute
was not writen in file. The post_copy_file() at H5Oattr.c only updates the value
in memory.
To fix the problem, we added H5O_shared_post_copy_file(), which delete the attribute
in file (with the incorrect value) and create an new attribute with the correct values.
I added the following functions:
H5Oshared.c:H5O_shared_post_copy_file(H5F_t *f, hid_t dxpl_id, H5O_t *oh, void *mesg);
H5Oshared.h: H5O_SHARED_POST_COPY_FILE
and modified the following files to include shared_post_copy_file()
H5Oattr.c
H5Odtype.c
H5Ofill.c
H5Opline.c
H5Osdspace.c
Diffstat (limited to 'src/H5Oprivate.h')
-rw-r--r-- | src/H5Oprivate.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/H5Oprivate.h b/src/H5Oprivate.h index c4d2a1f..2376113 100644 --- a/src/H5Oprivate.h +++ b/src/H5Oprivate.h @@ -130,9 +130,10 @@ typedef struct H5O_copy_t { hbool_t expand_ref; /* Flag to expand object references */ hbool_t copy_without_attr; /* Flag to not copy attributes */ hbool_t preserve_null; /* Flag to not delete NULL messages */ - int curr_depth; /* Current depth in hierarchy copied */ - int max_depth; /* Maximum depth in hierarchy to copy */ - H5SL_t *map_list; /* Skip list to hold address mappings */ + int curr_depth; /* Current depth in hierarchy copied */ + int max_depth; /* Maximum depth in hierarchy to copy */ + H5SL_t *map_list; /* Skip list to hold address mappings */ + H5O_t *oh_dst; /* The destination object header */ } H5O_copy_t; /* Header message IDs */ |