summaryrefslogtreecommitdiffstats
path: root/src/H5FDmpi.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2004-01-31 15:09:19 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2004-01-31 15:09:19 (GMT)
commitd05f6cde5283c6cf4462b0aad655606da8be63ed (patch)
tree55a7f4e959bb5012ebe1cc5d4baee657eda186c5 /src/H5FDmpi.h
parentc3b2c4132760e245a5d7af6bacb20265c4df0c84 (diff)
downloadhdf5-d05f6cde5283c6cf4462b0aad655606da8be63ed.zip
hdf5-d05f6cde5283c6cf4462b0aad655606da8be63ed.tar.gz
hdf5-d05f6cde5283c6cf4462b0aad655606da8be63ed.tar.bz2
[svn-r8130] Purpose:
Bug fix Description: Address the failure in the FORTRAN builds by making some more of the MPI-related typedefs in the library available outside of parallel builds. Platforms tested: Linux 2.4 (verbena) w/FORTRAN & C++
Diffstat (limited to 'src/H5FDmpi.h')
-rw-r--r--src/H5FDmpi.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5FDmpi.h b/src/H5FDmpi.h
index f7e0200..10d2107 100644
--- a/src/H5FDmpi.h
+++ b/src/H5FDmpi.h
@@ -21,14 +21,14 @@
#ifndef H5FDmpi_H
#define H5FDmpi_H
-#ifdef H5_HAVE_PARALLEL
-
/* Type of I/O for data transfer properties */
typedef enum H5FD_mpio_xfer_t {
H5FD_MPIO_INDEPENDENT = 0, /*zero is the default*/
H5FD_MPIO_COLLECTIVE
} H5FD_mpio_xfer_t;
+#ifdef H5_HAVE_PARALLEL
+
/* Sub-class the H5FD_class_t to add more specific functions for MPI-based VFDs */
typedef struct H5FD_class_mpi_t {
H5FD_class_t super; /* Superclass information & methods */