diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2011-02-22 00:03:37 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2011-02-22 00:03:37 (GMT) |
commit | cab5c372bfc34773014c13a38ca8dc30d5a89441 (patch) | |
tree | 4d45ce180a967261d3416590749389b65e4f0b6c /src/H5Ddeprec.c | |
parent | cf7f31f0c6deccc787291205dabed9b11fc8feee (diff) | |
download | hdf5-cab5c372bfc34773014c13a38ca8dc30d5a89441.zip hdf5-cab5c372bfc34773014c13a38ca8dc30d5a89441.tar.gz hdf5-cab5c372bfc34773014c13a38ca8dc30d5a89441.tar.bz2 |
[svn-r20135] Description:
Bring r20134 from metadata journaling merging branch to trunk:
Bring changes from metadata journaling branch to "merging" branch:
Unify routine to mark a dataset's metadata as changed.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Diffstat (limited to 'src/H5Ddeprec.c')
-rw-r--r-- | src/H5Ddeprec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5Ddeprec.c b/src/H5Ddeprec.c index b06bce1..b31f23b 100644 --- a/src/H5Ddeprec.c +++ b/src/H5Ddeprec.c @@ -366,7 +366,8 @@ H5D_extend(H5D_t *dataset, const hsize_t *size, hid_t dxpl_id) HGOTO_ERROR(H5E_DATASET, H5E_CANTINIT, FAIL, "unable to initialize dataset with fill value") /* Mark the dataspace as dirty, for later writing to the file */ - dataset->shared->space_dirty = TRUE; + if(H5D_mark(dataset, dxpl_id, H5D_MARK_SPACE) < 0) + HGOTO_ERROR(H5E_DATASET, H5E_CANTSET, FAIL, "unable to mark dataspace as dirty") } /* end if */ done: |