summaryrefslogtreecommitdiffstats
path: root/src/H5VLprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2018-11-04 05:05:08 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2018-11-04 05:05:08 (GMT)
commitdf7cf2a9d3409ce6dfbd28d80af35fa2512320ae (patch)
tree4050d1c6f79b0c97d8d73771374ca58dc9985bc1 /src/H5VLprivate.h
parent4806d29d9f2274e102c76b8672c47cc211dbf3d6 (diff)
downloadhdf5-df7cf2a9d3409ce6dfbd28d80af35fa2512320ae.zip
hdf5-df7cf2a9d3409ce6dfbd28d80af35fa2512320ae.tar.gz
hdf5-df7cf2a9d3409ce6dfbd28d80af35fa2512320ae.tar.bz2
Refactor, standardize, and revise the async request callbacks.
Diffstat (limited to 'src/H5VLprivate.h')
-rw-r--r--src/H5VLprivate.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/H5VLprivate.h b/src/H5VLprivate.h
index a168b57..ee6b7d4 100644
--- a/src/H5VLprivate.h
+++ b/src/H5VLprivate.h
@@ -162,9 +162,11 @@ H5_DLL herr_t H5VL_datatype_optional(const H5VL_object_t *vol_obj, hid_t dxpl_id
H5_DLL herr_t H5VL_datatype_close(const H5VL_object_t *vol_obj, hid_t dxpl_id, void **req);
/* Asynchronous functions */
-H5_DLL herr_t H5VL_request_cancel(void **req, const H5VL_class_t *cls, H5ES_status_t *status);
-H5_DLL herr_t H5VL_request_test(void **req, const H5VL_class_t *cls, H5ES_status_t *status);
-H5_DLL herr_t H5VL_request_wait(void **req, const H5VL_class_t *cls, H5ES_status_t *status);
+H5_DLL herr_t H5VL_request_wait(const H5VL_object_t *vol_obj, uint64_t timeout, H5ES_status_t *status);
+H5_DLL herr_t H5VL_request_cancel(const H5VL_object_t *vol_obj);
+H5_DLL herr_t H5VL_request_specific(const H5VL_object_t *vol_obj, H5VL_request_specific_t specific_type, ...);
+H5_DLL herr_t H5VL_request_optional(const H5VL_object_t *vol_obj, ...);
+H5_DLL herr_t H5VL_request_free(const H5VL_object_t *vol_obj);
#endif /* _H5VLprivate_H */