diff options
author | Jerome Soumagne <jsoumagne@hdfgroup.org> | 2019-09-19 19:55:03 (GMT) |
---|---|---|
committer | Jerome Soumagne <jsoumagne@hdfgroup.org> | 2019-10-08 19:30:24 (GMT) |
commit | fa6fdde1bfb8a29cfc86a4b441c49a63f15fd109 (patch) | |
tree | f177a35a87255c46747e497c4281d4843967eee6 /src/H5VLprivate.h | |
parent | eaa65c862b09b399fc4727e664b56b648cfb37d2 (diff) | |
download | hdf5-fa6fdde1bfb8a29cfc86a4b441c49a63f15fd109.zip hdf5-fa6fdde1bfb8a29cfc86a4b441c49a63f15fd109.tar.gz hdf5-fa6fdde1bfb8a29cfc86a4b441c49a63f15fd109.tar.bz2 |
Fix H5VL_blob_get to return size of blob
Fix const in blob API
Add H5HG_HEAP_ID_SIZE macro to return native blob size
Add maximum size for blobs
Fix blob API callbacks to pass VOL file object
Add public wrappers for blob VOL API
Implement passthrough blob callbacks
Update H5Tvlen after callback changes
Update trace information for H5VL blob routines
Fix public header inclusion in native and passthru headers
Diffstat (limited to 'src/H5VLprivate.h')
-rw-r--r-- | src/H5VLprivate.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/H5VLprivate.h b/src/H5VLprivate.h index 4aeabfa..2889524 100644 --- a/src/H5VLprivate.h +++ b/src/H5VLprivate.h @@ -194,12 +194,9 @@ 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); /* Blob functions */ -H5_DLL herr_t H5VL_blob_put(const H5VL_class_t *cls, void *blob, size_t size, - void *ctx, void *id); -H5_DLL herr_t H5VL_blob_get(const H5VL_class_t *cls, const void *id, void *ctx, - void *blob); -H5_DLL herr_t H5VL_blob_specific(const H5VL_class_t *cls, void *id, - H5VL_blob_specific_t specific_type, ...); +H5_DLL herr_t H5VL_blob_put(const H5VL_object_t *vol_obj, const void *buf, size_t size, void *blob_id, void *ctx); +H5_DLL herr_t H5VL_blob_get(const H5VL_object_t *vol_obj, const void *blob_id, void *buf, size_t *size, void *ctx); +H5_DLL herr_t H5VL_blob_specific(const H5VL_object_t *vol_obj, void *blob_id, H5VL_blob_specific_t specific_type, ...); /* Generic functions */ H5_DLL herr_t H5VL_optional(const H5VL_object_t *vol_obj, hid_t dxpl_id,void **req, ...); |