summaryrefslogtreecommitdiffstats
path: root/src/H5FDmpio.h
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>1999-11-22 18:08:32 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>1999-11-22 18:08:32 (GMT)
commit5dbf1ef375df764b7ee4f5fd1a781a341c76b8d1 (patch)
tree9e8f348666a94cf19a4d2071b04c31fb7c2216b9 /src/H5FDmpio.h
parentffa778636fa99f599f520b51e1696482537ddcb2 (diff)
downloadhdf5-5dbf1ef375df764b7ee4f5fd1a781a341c76b8d1.zip
hdf5-5dbf1ef375df764b7ee4f5fd1a781a341c76b8d1.tar.gz
hdf5-5dbf1ef375df764b7ee4f5fd1a781a341c76b8d1.tar.bz2
[svn-r1844] Changed to use the H5_HAVE_PARALLEL macro names.
Diffstat (limited to 'src/H5FDmpio.h')
-rw-r--r--src/H5FDmpio.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5FDmpio.h b/src/H5FDmpio.h
index fb61498..31be940 100644
--- a/src/H5FDmpio.h
+++ b/src/H5FDmpio.h
@@ -13,7 +13,7 @@
#include <H5FDpublic.h>
#include <H5Ipublic.h>
-#ifdef HAVE_PARALLEL
+#ifdef H5_HAVE_PARALLEL
# define H5FD_MPIO (H5FD_mpio_init())
#else
# define H5FD_MPIO (-1)
@@ -35,7 +35,7 @@ typedef struct H5FD_mpio_dxpl_t {
} H5FD_mpio_dxpl_t;
/* Function prototypes */
-#ifdef HAVE_PARALLEL
+#ifdef H5_HAVE_PARALLEL
__DLL__ hid_t H5FD_mpio_init(void);
__DLL__ herr_t H5Pset_fapl_mpio(hid_t fapl_id, MPI_Comm comm, MPI_Info info);
__DLL__ herr_t H5Pget_fapl_mpio(hid_t fapl_id, MPI_Comm *comm/*out*/,
@@ -49,6 +49,6 @@ __DLL__ herr_t H5FD_mpio_setup(H5FD_t *_file, MPI_Datatype btype, MPI_Datatype f
__DLL__ herr_t H5FD_mpio_wait_for_left_neighbor(H5FD_t *file);
__DLL__ herr_t H5FD_mpio_signal_right_neighbor(H5FD_t *file);
-#endif /*HAVE_PARALLEL*/
+#endif /*H5_HAVE_PARALLEL*/
#endif