diff options
author | mainzer <mainzer#hdfgroup.org> | 2018-03-12 03:32:09 (GMT) |
---|---|---|
committer | mainzer <mainzer#hdfgroup.org> | 2018-03-12 03:32:09 (GMT) |
commit | 4823abf3ee0d9df1c3f23ae7e36ce4d1d146afd6 (patch) | |
tree | 7c39ecc29408838aa7fb85a0e08e398a7aef8da6 /src/H5Fint.c | |
parent | a8bea5fd26bbb5ac090c3f137b04b50f431048c6 (diff) | |
download | hdf5-4823abf3ee0d9df1c3f23ae7e36ce4d1d146afd6.zip hdf5-4823abf3ee0d9df1c3f23ae7e36ce4d1d146afd6.tar.gz hdf5-4823abf3ee0d9df1c3f23ae7e36ce4d1d146afd6.tar.bz2 |
Removed commented out code from H5FDmpio.c, H5FDprivate.h and H5Fint.c
Tested parallel (debug and production) and serial (production)
Diffstat (limited to 'src/H5Fint.c')
-rw-r--r-- | src/H5Fint.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/H5Fint.c b/src/H5Fint.c index 135d878..cc5931a 100644 --- a/src/H5Fint.c +++ b/src/H5Fint.c @@ -1788,7 +1788,6 @@ H5F__flush_phase2(H5F_t *f, hid_t meta_dxpl_id, hid_t raw_dxpl_id, hbool_t closi HDONE_ERROR(H5E_CACHE, H5E_CANTFLUSH, FAIL, "unable to flush metadata cache") /* Truncate the file to the current allocated size */ -#if 1 /* JRM */ #ifdef H5_HAVE_PARALLEL if(H5F_HAS_FEATURE(f, H5FD_FEAT_HAS_MPI)) { /* Since we just returned from a call to H5AC_flush(), we just @@ -1798,7 +1797,6 @@ H5F__flush_phase2(H5F_t *f, hid_t meta_dxpl_id, hid_t raw_dxpl_id, hbool_t closi H5FD_mpio_mark_pre_trunc_barrier_unecessary(f->shared->lf); } #endif /* H5_HAVE_PARALLEL */ -#endif /* JRM */ if(H5FD_truncate(f->shared->lf, meta_dxpl_id, closing) < 0) /* Push error, but keep going*/ HDONE_ERROR(H5E_FILE, H5E_WRITEERROR, FAIL, "low level truncate failed") |