diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2019-07-08 20:33:31 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2019-07-08 20:33:31 (GMT) |
commit | c88caec5aeaf4011e6577967d4f382e77b8a012f (patch) | |
tree | 81d415e00b1b050d6f93c2ee5e732c6f3e43eb8c | |
parent | 8583d608ef094237e5f484e0b4a7bb147fa9c6b5 (diff) | |
download | hdf5-c88caec5aeaf4011e6577967d4f382e77b8a012f.zip hdf5-c88caec5aeaf4011e6577967d4f382e77b8a012f.tar.gz hdf5-c88caec5aeaf4011e6577967d4f382e77b8a012f.tar.bz2 |
Declaration needed for parallel standalone
-rw-r--r-- | tools/test/perform/pio_standalone.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/test/perform/pio_standalone.c b/tools/test/perform/pio_standalone.c index dd6a61a..022e390 100644 --- a/tools/test/perform/pio_standalone.c +++ b/tools/test/perform/pio_standalone.c @@ -162,4 +162,8 @@ print_version(const char *progname) H5_VERS_SUBRELEASE[0] ? "-" : "", H5_VERS_SUBRELEASE); } +#ifdef H5_HAVE_PARALLEL +MPI_Info h5_io_info_g=MPI_INFO_NULL;/* MPI INFO object for IO */ +#endif + |