diff options
author | Robert Kim Yates <rkyates@llnl.gov> | 1998-06-11 22:01:12 (GMT) |
---|---|---|
committer | Robert Kim Yates <rkyates@llnl.gov> | 1998-06-11 22:01:12 (GMT) |
commit | f6ea1f45da6d7de7a5c16a4ebf75ad29a43728ca (patch) | |
tree | b04c867e218b2de675fa78feff11cc421c26e369 /src | |
parent | 7f0e87fe2f5ee3bbf9b06639d86abc5cecc78a94 (diff) | |
download | hdf5-f6ea1f45da6d7de7a5c16a4ebf75ad29a43728ca.zip hdf5-f6ea1f45da6d7de7a5c16a4ebf75ad29a43728ca.tar.gz hdf5-f6ea1f45da6d7de7a5c16a4ebf75ad29a43728ca.tar.bz2 |
[svn-r423] Added H5F_MPIO_DEBUG_KEY so application program can turn on debug flags
of H5Fmpio via the MPI_Info parameter to H5Fcreate and H5Fopen.
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Fpublic.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/H5Fpublic.h b/src/H5Fpublic.h index 2f79a6e..e218ead 100644 --- a/src/H5Fpublic.h +++ b/src/H5Fpublic.h @@ -35,6 +35,13 @@ #define H5F_ACC_EXCL (H5check(),0x0004u) /*fail if file already exists*/ #define H5F_ACC_DEBUG (H5check(),0x0008u) /*print debug info */ +#ifdef HAVE_PARALLEL +/* Use this constant string as the MPI_Info key to set H5Fmpio debug flags. + * To turn on H5Fmpio debug flags, + * set the MPI_Info value with this key to have the value of a string + * consisting of the characters that turn on the desired flags. */ +#define H5F_MPIO_DEBUG_KEY "H5F_mpio_debug_key" +#endif #ifdef LATER /* |