summaryrefslogtreecommitdiffstats
path: root/src/H5Dio.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2012-04-20 20:40:23 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2012-04-20 20:40:23 (GMT)
commit8f0cec6ac74b908b83bf2235799e79bdebd74898 (patch)
tree7c6de3069361bf433cded2b36f59521552e2f166 /src/H5Dio.c
parent25f759d15adae9665b1608cb1d9e5dcead721d8d (diff)
downloadhdf5-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/H5Dio.c')
-rw-r--r--src/H5Dio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Dio.c b/src/H5Dio.c
index 31dff83..2a1029e 100644
--- a/src/H5Dio.c
+++ b/src/H5Dio.c
@@ -129,7 +129,7 @@ H5Dread(hid_t dset_id, hid_t mem_type_id, hid_t mem_space_id,
/* Read the data through the VOL */
if((ret_value = H5VL_dataset_read(dset_id, mem_type_id, mem_space_id,
- file_space_id, plist_id, buf)) < 0)
+ file_space_id, plist_id, buf, H5_REQUEST_NULL)) < 0)
HGOTO_ERROR(H5E_DATASET, H5E_READERROR, FAIL, "can't read data")
@@ -190,7 +190,7 @@ H5Dwrite(hid_t dset_id, hid_t mem_type_id, hid_t mem_space_id,
/* Write the data through the VOL */
if((ret_value = H5VL_dataset_write(dset_id, mem_type_id, mem_space_id,
- file_space_id, dxpl_id, buf)) < 0)
+ file_space_id, dxpl_id, buf, H5_REQUEST_NULL)) < 0)
HGOTO_ERROR(H5E_DATASET, H5E_WRITEERROR, FAIL, "can't write data")
done: