diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2000-04-10 18:22:10 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2000-04-10 18:22:10 (GMT) |
commit | 408574794a7438854cf4d981ba11bbc29f5253cc (patch) | |
tree | 03013e1d9b19ed3fde1a788fa18b3c93015f97bc | |
parent | 423d36e616d94c1a42fd71ef882b47a4f83123e5 (diff) | |
download | hdf5-408574794a7438854cf4d981ba11bbc29f5253cc.zip hdf5-408574794a7438854cf4d981ba11bbc29f5253cc.tar.gz hdf5-408574794a7438854cf4d981ba11bbc29f5253cc.tar.bz2 |
[svn-r2100] Turn on H5FDmpio_debug if H5F_DEBUG is on.
-rw-r--r-- | src/H5FDmpio.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/H5FDmpio.h b/src/H5FDmpio.h index d1f3c65..e7df072 100644 --- a/src/H5FDmpio.h +++ b/src/H5FDmpio.h @@ -36,6 +36,13 @@ typedef struct H5FD_mpio_dxpl_t { #ifdef H5_HAVE_PARALLEL /* Macros */ +/*Turn on H5FDmpio_debug if H5F_DEBUG is on */ +#ifdef H5F_DEBUG +#ifndef H5FDmpio_DEBUG +#define H5FDmpio_DEBUG +#endif +#endif + #define IS_H5FD_MPIO(f) /* (H5F_t *f) */ \ (H5FD_MPIO==f->shared->lf->driver_id) |