summaryrefslogtreecommitdiffstats
path: root/src/H5.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2013-06-27 19:07:24 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2013-06-27 19:07:24 (GMT)
commitb5f6b587130537186fa47ea1487cd8e487de31d2 (patch)
treec616de466ffecdaf00b528b3a3c99e5b21fc12ac /src/H5.c
parent5d7f70d45d3d45a6541d36636896042487a2a702 (diff)
parent0fe43fbf2cd56f142ec322daca2a669fac8243ed (diff)
downloadhdf5-b5f6b587130537186fa47ea1487cd8e487de31d2.zip
hdf5-b5f6b587130537186fa47ea1487cd8e487de31d2.tar.gz
hdf5-b5f6b587130537186fa47ea1487cd8e487de31d2.tar.bz2
[svn-r23837] merge from VOL branch and add new callbacks
Diffstat (limited to 'src/H5.c')
-rw-r--r--src/H5.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/H5.c b/src/H5.c
index 094134a..a882c61 100644
--- a/src/H5.c
+++ b/src/H5.c
@@ -145,7 +145,7 @@ H5_init_library(void)
MPI_Initialized(&mpi_initialized);
if (mpi_initialized){
mpe_code = MPE_Init_log();
- assert(mpe_code >=0);
+ HDassert(mpe_code >=0);
H5_MPEinit_g = TRUE;
}
}
@@ -274,6 +274,7 @@ H5_term_library(void)
pending += DOWN(Z);
pending += DOWN(FD);
pending += DOWN(P);
+ pending += DOWN(PL);
/* Don't shut down the error code until other APIs which use it are shut down */
if(pending == 0)
pending += DOWN(E);
@@ -312,7 +313,7 @@ H5_term_library(void)
MPI_Initialized(&mpi_initialized);
if(mpi_initialized) {
mpe_code = MPE_Finish_log("h5log");
- assert(mpe_code >=0);
+ HDassert(mpe_code >=0);
} /* end if */
H5_MPEinit_g = FALSE; /* turn it off no matter what */
} /* end if */