summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2014-06-19 14:32:12 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2014-06-19 14:32:12 (GMT)
commitee9c4712255e1e0362e4592a1a81c183562067fa (patch)
tree0124df677fecc6d0a1793873b956aaaa70a31045
parent9806774a8d873c2c1341f2b0817599b8cbd8abf5 (diff)
downloadhdf5-ee9c4712255e1e0362e4592a1a81c183562067fa.zip
hdf5-ee9c4712255e1e0362e4592a1a81c183562067fa.tar.gz
hdf5-ee9c4712255e1e0362e4592a1a81c183562067fa.tar.bz2
[svn-r25329] - call H5open() in EFF_init().
-rw-r--r--src/H5VLiod.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/H5VLiod.c b/src/H5VLiod.c
index d3812f0..1704791 100644
--- a/src/H5VLiod.c
+++ b/src/H5VLiod.c
@@ -622,6 +622,8 @@ EFF_init(MPI_Comm comm, MPI_Info UNUSED info)
char *coresident_s = NULL;
herr_t ret_value = SUCCEED;
+ H5open();
+
MPI_Comm_size(comm, &num_procs);
MPI_Comm_rank(comm, &my_rank);
@@ -749,6 +751,7 @@ EFF_init(MPI_Comm comm, MPI_Info UNUSED info)
if(HG_Request_free(hg_req) != HG_SUCCESS)
return FAIL;
+done:
return ret_value;
} /* end EFF_init() */
@@ -769,9 +772,8 @@ herr_t
EFF_finalize(void)
{
hg_request_t hg_req;
- herr_t ret_value = SUCCEED;
-
H5VL_iod_request_t *cur_req = axe_list.head;
+ herr_t ret_value = SUCCEED;
/* process axe_list */
while(cur_req) {