summaryrefslogtreecommitdiffstats
path: root/src/H5M.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2019-08-13 15:46:56 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2019-08-13 15:46:56 (GMT)
commit5024051e35d4e113e7c144aed5b99f1be3cc938d (patch)
tree8f732e9cff89c367be5840af9a1fb64d9e3141a5 /src/H5M.c
parent5b6bd7c922d81bb6d1877c03e4b012823f03f88a (diff)
downloadhdf5-5024051e35d4e113e7c144aed5b99f1be3cc938d.zip
hdf5-5024051e35d4e113e7c144aed5b99f1be3cc938d.tar.gz
hdf5-5024051e35d4e113e7c144aed5b99f1be3cc938d.tar.bz2
Renamed H5Mdelete_key to H5Mdelete and H5Mset to H5Mput.
Diffstat (limited to 'src/H5M.c')
-rw-r--r--src/H5M.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/H5M.c b/src/H5M.c
index 3008c40..adb4df0 100644
--- a/src/H5M.c
+++ b/src/H5M.c
@@ -650,9 +650,9 @@ done:
/*-------------------------------------------------------------------------
- * Function: H5Mset
+ * Function: H5Mput
*
- * Purpose: H5Mset adds a key-value pair to the Map specified by
+ * Purpose: H5Mput adds a key-value pair to the Map specified by
* MAP_ID, or updates the value for the specified key if one
* was set previously. KEY_MEM_TYPE_ID and VAL_MEM_TYPE_ID
* specify the datatypes for the provided KEY and VALUE
@@ -666,7 +666,7 @@ done:
*-------------------------------------------------------------------------
*/
herr_t
-H5Mset(hid_t map_id, hid_t key_mem_type_id, const void *key,
+H5Mput(hid_t map_id, hid_t key_mem_type_id, const void *key,
hid_t val_mem_type_id, const void *value, hid_t dxpl_id)
{
H5VL_object_t *vol_obj = NULL;
@@ -697,12 +697,12 @@ H5Mset(hid_t map_id, hid_t key_mem_type_id, const void *key,
H5CX_set_dxpl(dxpl_id);
/* Set the key/value pair */
- if(H5VL_optional(vol_obj, dxpl_id, H5_REQUEST_NULL, H5VL_MAP_SET, key_mem_type_id, key, val_mem_type_id, value) < 0)
- HGOTO_ERROR(H5E_MAP, H5E_CANTSET, FAIL, "unable to set key/value pair")
+ if(H5VL_optional(vol_obj, dxpl_id, H5_REQUEST_NULL, H5VL_MAP_PUT, key_mem_type_id, key, val_mem_type_id, value) < 0)
+ HGOTO_ERROR(H5E_MAP, H5E_CANTSET, FAIL, "unable to put key/value pair")
done:
FUNC_LEAVE_API(ret_value)
-} /* end H5Mset() */
+} /* end H5Mput() */
/*-------------------------------------------------------------------------
@@ -973,9 +973,9 @@ done:
/*-------------------------------------------------------------------------
- * Function: H5Mdelete_key
+ * Function: H5Mdelete
*
- * Purpose: H5Mdelete_key deletes a key-value pair from the Map
+ * Purpose: H5Mdelete deletes a key-value pair from the Map
* specified by MAP_ID. KEY_MEM_TYPE_ID specifies the
* datatype for the provided key buffers, and if different
* from that used to create the Map object, the key will be
@@ -988,7 +988,7 @@ done:
*-------------------------------------------------------------------------
*/
herr_t
-H5Mdelete_key(hid_t map_id, hid_t key_mem_type_id, const void *key,
+H5Mdelete(hid_t map_id, hid_t key_mem_type_id, const void *key,
hid_t dxpl_id)
{
H5VL_object_t *vol_obj = NULL;
@@ -1020,13 +1020,13 @@ H5Mdelete_key(hid_t map_id, hid_t key_mem_type_id, const void *key,
loc_params.type = H5VL_OBJECT_BY_SELF;
loc_params.obj_type = H5I_get_type(map_id);
- /* Set the key/value pair */
- if(H5VL_optional(vol_obj, dxpl_id, H5_REQUEST_NULL, H5VL_MAP_SPECIFIC, &loc_params, H5VL_MAP_DELETE_KEY, key_mem_type_id, key) < 0)
- HGOTO_ERROR(H5E_MAP, H5E_CANTSET, FAIL, "unable to set key/value pair")
+ /* Delete the key/value pair */
+ if(H5VL_optional(vol_obj, dxpl_id, H5_REQUEST_NULL, H5VL_MAP_SPECIFIC, &loc_params, H5VL_MAP_DELETE, key_mem_type_id, key) < 0)
+ HGOTO_ERROR(H5E_MAP, H5E_CANTSET, FAIL, "unable to delete key/value pair")
done:
FUNC_LEAVE_API(ret_value)
-} /* end H5Mdelete_key() */
+} /* end H5Mdelete() */
#endif /* H5_HAVE_MAP_API */