summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>1998-10-28 23:07:19 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>1998-10-28 23:07:19 (GMT)
commit54240b9657d3068757e4017670d776f9732e850f (patch)
tree1574704cd2981f7d6bd80e1c80b7f6691ba28a5e /src
parent9a4d614a0ba20bcd57089ceb254c2be2f8a197a4 (diff)
downloadhdf5-54240b9657d3068757e4017670d776f9732e850f.zip
hdf5-54240b9657d3068757e4017670d776f9732e850f.tar.gz
hdf5-54240b9657d3068757e4017670d776f9732e850f.tar.bz2
[svn-r821] Set the metadata writing by 1 process to be TRUE by default
except when it is in the Intel Red in which it is not working yet. Update the development version too.
Diffstat (limited to 'src')
-rw-r--r--src/H5Fmpio.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/H5Fmpio.c b/src/H5Fmpio.c
index f63ca07..d9ba4b0 100644
--- a/src/H5Fmpio.c
+++ b/src/H5Fmpio.c
@@ -74,7 +74,12 @@ static hbool_t interface_initialize_g = FALSE; /* rky??? */
/* Global var to allow elimination of redundant metadata writes
* to be controlled by the value of an environment variable. */
+/* Use the elimination by default unless this is the Intel Red machine */
+#ifndef DOS386
+hbool_t H5_mpi_1_metawrite_g = TRUE;
+#else
hbool_t H5_mpi_1_metawrite_g = FALSE;
+#endif
#define H5F_MPIO_DEV 0xfffe /*pseudo dev for MPI-IO until we fix things */
/* Make sure this differs from H5F_CORE_DEV */