diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-02-21 19:37:25 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-02-21 19:37:25 (GMT) |
commit | d45880ce1de770eae0b6e71cfdcf13ba40f8dea5 (patch) | |
tree | 340354cf40a2908bdc0bb9dc4fa87a9efad15e84 /src/H5FPpublic.h | |
parent | d84e6e525e28ace2f9163253212436fc09d30b8c (diff) | |
download | hdf5-d45880ce1de770eae0b6e71cfdcf13ba40f8dea5.zip hdf5-d45880ce1de770eae0b6e71cfdcf13ba40f8dea5.tar.gz hdf5-d45880ce1de770eae0b6e71cfdcf13ba40f8dea5.tar.bz2 |
[svn-r6427] Purpose:
Update
Description:
Changed the H5FPinit() function to accept pointers to what the SAP
Comm and SAP Barrier Comm should be assigned to. This is the first
step in hopefully getting rid of the global versions of them
altogether (but we'll see).
Platforms tested:
Linux
Diffstat (limited to 'src/H5FPpublic.h')
-rw-r--r-- | src/H5FPpublic.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5FPpublic.h b/src/H5FPpublic.h index f282e23..644c363 100644 --- a/src/H5FPpublic.h +++ b/src/H5FPpublic.h @@ -20,7 +20,8 @@ extern "C" { #endif -H5_DLL herr_t H5FPinit(MPI_Comm comm, int sap_rank); +H5_DLL herr_t H5FPinit(MPI_Comm comm, int sap_rank, + MPI_Comm *FP_comm, MPI_Comm *FP_barrier_comm); H5_DLL herr_t H5FPfinalize(void); #ifdef __cplusplus |