summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2003-05-08 22:25:08 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2003-05-08 22:25:08 (GMT)
commit6af5ba7c56b5af9ba9fe168c8d5889cdf2ad9433 (patch)
tree85bf08b19055787d0059c5040893ddb699d6abbd /src
parent224fae1bb26ebae7169f25d824dbe7f20cc59c0d (diff)
downloadhdf5-6af5ba7c56b5af9ba9fe168c8d5889cdf2ad9433.zip
hdf5-6af5ba7c56b5af9ba9fe168c8d5889cdf2ad9433.tar.gz
hdf5-6af5ba7c56b5af9ba9fe168c8d5889cdf2ad9433.tar.bz2
[svn-r6841] Purpose:
Bug Fix Description: A variable wasn't declared in this file. Solution: Put the extern declaration of the variable in this file. It's defined in the H5S.c module. Platforms tested: Modi4 (This affects only parallel platforms) Misc. update:
Diffstat (limited to 'src')
-rw-r--r--src/H5Dio.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/H5Dio.c b/src/H5Dio.c
index 4ece1b4..f07666d 100644
--- a/src/H5Dio.c
+++ b/src/H5Dio.c
@@ -62,6 +62,11 @@ typedef struct fm_map {
static int interface_initialize_g = 0;
#define INTERFACE_INIT NULL
+#ifdef H5_HAVE_PARALLEL
+/* Global vars whose value can be set from environment variable also */
+extern hbool_t H5S_mpi_opt_types_g;
+#endif /* H5_HAVE_PARALLEL */
+
/* Local functions */
static herr_t H5D_read(H5D_t *dataset, const H5T_t *mem_type,
const H5S_t *mem_space, const H5S_t *file_space,