diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-06-30 15:53:02 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-06-30 15:53:02 (GMT) |
commit | 87a5f6480cbf866b1a72de7092dac9cca6e0ef2c (patch) | |
tree | e514487f5500c93ba7b262a42f327375c7821ab4 /src/H5Fprivate.h | |
parent | 007affb6dfc894e2e81a90ae7790473ff6dc26b0 (diff) | |
download | hdf5-87a5f6480cbf866b1a72de7092dac9cca6e0ef2c.zip hdf5-87a5f6480cbf866b1a72de7092dac9cca6e0ef2c.tar.gz hdf5-87a5f6480cbf866b1a72de7092dac9cca6e0ef2c.tar.bz2 |
[svn-r7122] Purpose:
Code cleanup/Feature removal
Description:
Remove "round robin" writing of metadata in MPI VFDs (and a couple of other
places). This never really worked the way I hoped it would and it causes
problems on certain machines.
Platforms tested:
FreeBSD 4.8 (sleipnir) w/parallel
Too small for triple check.
Diffstat (limited to 'src/H5Fprivate.h')
-rw-r--r-- | src/H5Fprivate.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h index 53dc8ad..6c81e21 100644 --- a/src/H5Fprivate.h +++ b/src/H5Fprivate.h @@ -368,6 +368,11 @@ typedef struct H5F_t H5F_t; #define H5F_MNT_SYM_LOCAL_SIZE sizeof(hbool_t) #define H5F_MNT_SYM_LOCAL_DEF FALSE +#ifdef H5_HAVE_PARALLEL +/* Which process writes metadata */ +#define H5_PAR_META_WRITE 0 +#endif /* H5_HAVE_PARALLEL */ + /* Forward declarations for prototype arguments */ struct H5B_class_t; union H5D_storage_t; |