diff options
author | Robert Kim Yates <rkyates@llnl.gov> | 1998-02-03 15:29:05 (GMT) |
---|---|---|
committer | Robert Kim Yates <rkyates@llnl.gov> | 1998-02-03 15:29:05 (GMT) |
commit | 6cbd6722513cede31afd1826cb842b947ae8b996 (patch) | |
tree | 020426f7513d16da373bf4d785a4afc1dd0f4927 /src/H5.c | |
parent | a6f59faa9deea96ed2a8500ea53f5ef0f0a565ce (diff) | |
download | hdf5-6cbd6722513cede31afd1826cb842b947ae8b996.zip hdf5-6cbd6722513cede31afd1826cb842b947ae8b996.tar.gz hdf5-6cbd6722513cede31afd1826cb842b947ae8b996.tar.bz2 |
[svn-r212] Fixed H5F_mpio_read's handling of number of bytes read,
and removed MPI_Init and MPI_Finalize from H5.c
(these should be done in the user program).
Diffstat (limited to 'src/H5.c')
-rw-r--r-- | src/H5.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -94,9 +94,6 @@ H5_init_library(void) HRETURN_ERROR(H5E_FUNC, H5E_CANTINIT, FAIL, "unable to initialize type interface"); } -#ifdef PHDF5 - MPI_Init( NULL, NULL ); -#endif FUNC_LEAVE(SUCCEED); } @@ -169,9 +166,6 @@ H5_term_library(void) HDfree(temp); temp = lib_exit_head; } /* end while */ -#ifdef PHDF5 - MPI_Finalize(); -#endif } /* end H5_term_library() */ /*-------------------------------------------------------------------------- |