diff options
author | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2012-04-20 20:40:23 (GMT) |
---|---|---|
committer | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2012-04-20 20:40:23 (GMT) |
commit | 8f0cec6ac74b908b83bf2235799e79bdebd74898 (patch) | |
tree | 7c6de3069361bf433cded2b36f59521552e2f166 /src/H5Tcommit.c | |
parent | 25f759d15adae9665b1608cb1d9e5dcead721d8d (diff) | |
download | hdf5-8f0cec6ac74b908b83bf2235799e79bdebd74898.zip hdf5-8f0cec6ac74b908b83bf2235799e79bdebd74898.tar.gz hdf5-8f0cec6ac74b908b83bf2235799e79bdebd74898.tar.bz2 |
[svn-r22306] add a request id to each of the VOL callbacks and update the native
plugin to pass a NULL request
Diffstat (limited to 'src/H5Tcommit.c')
-rw-r--r-- | src/H5Tcommit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Tcommit.c b/src/H5Tcommit.c index d8ed7da..9ad67b9 100644 --- a/src/H5Tcommit.c +++ b/src/H5Tcommit.c @@ -153,7 +153,7 @@ H5Tcommit2(hid_t loc_id, const char *name, hid_t type_id, hid_t lcpl_id, HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not datatype access property list") /* commite the datatype through the VOL */ - if((ret_value = H5VL_datatype_commit(loc_id, name, type_id, lcpl_id, tcpl_id, tapl_id)) < 0) + if((ret_value = H5VL_datatype_commit(loc_id, name, type_id, lcpl_id, tcpl_id, tapl_id, H5_REQUEST_NULL)) < 0) HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "unable to open object") done: FUNC_LEAVE_API(ret_value) @@ -561,7 +561,7 @@ H5Topen2(hid_t loc_id, const char *name, hid_t tapl_id) HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not datatype access property list") /* Open the datatype through the VOL */ - if((ret_value = H5VL_datatype_open(loc_id, name, tapl_id)) < 0) + if((ret_value = H5VL_datatype_open(loc_id, name, tapl_id, H5_REQUEST_NULL)) < 0) HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "unable to open datatype") done: |