diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2012-08-21 11:47:54 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2012-08-21 11:47:54 (GMT) |
commit | e53af0ed745a7bec1795681c473ba54025814fd5 (patch) | |
tree | 013519a5d420c7c68f4d962fcf9f33f3216d02f8 /src/H5FDmpiposix.h | |
parent | d8f67a62cc4e0bd52a5a428608d46188dd5b27b2 (diff) | |
download | hdf5-e53af0ed745a7bec1795681c473ba54025814fd5.zip hdf5-e53af0ed745a7bec1795681c473ba54025814fd5.tar.gz hdf5-e53af0ed745a7bec1795681c473ba54025814fd5.tar.bz2 |
[svn-r22703] Description:
Propagated Windows and POSIX correctness changes from SEC2 VFD to
the MPI-POSIX VFD. Fixes HDFFV-8058.
Tested on:
jam w/ parallel and fortran enabled
Diffstat (limited to 'src/H5FDmpiposix.h')
-rw-r--r-- | src/H5FDmpiposix.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/H5FDmpiposix.h b/src/H5FDmpiposix.h index af13fad..e3764e1 100644 --- a/src/H5FDmpiposix.h +++ b/src/H5FDmpiposix.h @@ -14,7 +14,7 @@ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* - * Programmer: Quincey Koziol <koziol@ncsa.uiuc.edu> + * Programmer: Quincey Koziol <koziol@hdfgroup.org> * Thursday, July 11, 2002 * * Purpose: The public header file for the mpiposix driver. @@ -24,14 +24,14 @@ #define __H5FDmpiposix_H #ifdef H5_HAVE_PARALLEL -# define H5FD_MPIPOSIX (H5FD_mpiposix_init()) +# define H5FD_MPIPOSIX (H5FD_mpiposix_init()) #else -# define H5FD_MPIPOSIX (-1) +# define H5FD_MPIPOSIX (-1) #endif /* Macros */ -#define IS_H5FD_MPIPOSIX(f) /* (H5F_t *f) */ \ +#define IS_H5FD_MPIPOSIX(f) /* (H5F_t *f) */ \ (H5FD_MPIPOSIX==H5F_DRIVER_ID(f)) #ifdef H5_HAVE_PARALLEL @@ -52,4 +52,3 @@ H5_DLL herr_t H5Pget_fapl_mpiposix(hid_t fapl_id, MPI_Comm *comm/*out*/, hbool_t #endif /*H5_HAVE_PARALLEL*/ #endif /* __H5FDmpiposix_H */ - |