[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
This commit is contained in:
Dana Robinson 2012-08-21 06:47:54 -05:00
parent d8f67a62cc
commit e53af0ed74
2 changed files with 538 additions and 553 deletions

File diff suppressed because it is too large Load Diff

View File

@ -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 */