summaryrefslogtreecommitdiffstats
path: root/src/H5Fpkg.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-11-20 14:36:59 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-11-20 14:36:59 (GMT)
commit1619a308cbd6cb45ace7724a8aaadf003a3f80a2 (patch)
treecaa4deb7836762854d88dddf8c970abb72cd68f4 /src/H5Fpkg.h
parent0f45aeb53a0d2cfe379ed50e9370faef09d18a25 (diff)
downloadhdf5-1619a308cbd6cb45ace7724a8aaadf003a3f80a2.zip
hdf5-1619a308cbd6cb45ace7724a8aaadf003a3f80a2.tar.gz
hdf5-1619a308cbd6cb45ace7724a8aaadf003a3f80a2.tar.bz2
[svn-r7860] Purpose:
Bug fix Description: Our previous "optimization" of metadata writing which only wrote metadata from one process was abusing MPI-I/O and after some consultation with Rob Ross and Rajeev Thakur, Albert & I have come up with a solution... Solution: Instead of only writing from one process, issue a collective write operation with all processes, for metadata writes. Platforms tested: FreeBSD 4.9 (sleipnir) h5committest
Diffstat (limited to 'src/H5Fpkg.h')
-rw-r--r--src/H5Fpkg.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5Fpkg.h b/src/H5Fpkg.h
index ea11040..2ef630a 100644
--- a/src/H5Fpkg.h
+++ b/src/H5Fpkg.h
@@ -186,11 +186,13 @@ struct H5F_t {
H5F_mtab_t mtab; /* File mount table */
};
+#ifdef OLD_METADATA_WRITE
#ifdef H5_HAVE_PARALLEL
/* Whether a single process writes metadata */
H5_DLLVAR hbool_t H5_mpi_1_metawrite_g;
H5_DLLVAR hbool_t H5_mpiposix_1_metawrite_g;
#endif /* H5_HAVE_PARALLEL */
+#endif /* OLD_METADATA_WRITE */
/* Private functions, not part of the publicly documented API */
#ifdef NOT_YET