summaryrefslogtreecommitdiffstats
path: root/src/H5Ddeprec.c
diff options
context:
space:
mode:
authorSongyu Lu <songyulu@hdfgroup.org>2019-03-13 15:20:30 (GMT)
committerSongyu Lu <songyulu@hdfgroup.org>2019-03-13 15:20:30 (GMT)
commit594cd935435d36801bee3dbb7fc531df7d398bcc (patch)
tree13a93c2caae9c96a684d8852ddc82a2071821b65 /src/H5Ddeprec.c
parent07baf44a86de400c170006557e7595ea6ba9c20a (diff)
downloadhdf5-594cd935435d36801bee3dbb7fc531df7d398bcc.zip
hdf5-594cd935435d36801bee3dbb7fc531df7d398bcc.tar.gz
hdf5-594cd935435d36801bee3dbb7fc531df7d398bcc.tar.bz2
HDFFV-10658: setting and getting properties in API context:
1. external file prefix and VDS prefix. 2. the datatype, dataspace, and LCPL of the dataset for VOL connector.
Diffstat (limited to 'src/H5Ddeprec.c')
-rw-r--r--src/H5Ddeprec.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5Ddeprec.c b/src/H5Ddeprec.c
index 76827b4..70e6f70 100644
--- a/src/H5Ddeprec.c
+++ b/src/H5Ddeprec.c
@@ -136,6 +136,9 @@ H5Dcreate1(hid_t loc_id, const char *name, hid_t type_id, hid_t space_id,
if(TRUE != H5P_isa_class(dcpl_id, H5P_DATASET_CREATE))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, H5I_INVALID_HID, "not dataset create property list ID")
+ /* Set the DCPL for the API context */
+ H5CX_set_dcpl(dcpl_id);
+
/* Verify access property list and set up collective metadata if appropriate */
if(H5CX_set_apl(&dapl_id, H5P_CLS_DACC, loc_id, TRUE) < 0)
HGOTO_ERROR(H5E_DATASET, H5E_CANTSET, H5I_INVALID_HID, "can't set access property list info")
@@ -145,12 +148,9 @@ H5Dcreate1(hid_t loc_id, const char *name, hid_t type_id, hid_t space_id,
HGOTO_ERROR(H5E_ATOM, H5E_BADATOM, H5I_INVALID_HID, "can't find object for ID")
/* set creation properties */
- if(H5P_set(plist, H5VL_PROP_DSET_TYPE_ID, &type_id) < 0)
- HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, H5I_INVALID_HID, "can't set property value for datatype id")
- if(H5P_set(plist, H5VL_PROP_DSET_SPACE_ID, &space_id) < 0)
- HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, H5I_INVALID_HID, "can't set property value for space id")
- if(H5P_set(plist, H5VL_PROP_DSET_LCPL_ID, &lcpl_id) < 0)
- HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, H5I_INVALID_HID, "can't set property value for lcpl id")
+ H5CX_set_vl_prop_dset_type_id(type_id);
+ H5CX_set_vl_prop_dset_space_id(space_id);
+ H5CX_set_vl_prop_dset_lcpl_id(lcpl_id);
/* Set location parameters */
loc_params.type = H5VL_OBJECT_BY_SELF;