summaryrefslogtreecommitdiffstats
path: root/src/H5Iprivate.h
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2021-05-05 02:01:23 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2021-05-05 02:01:23 (GMT)
commit8e27e7357506958128d087c4e93e3dcb4fb52ace (patch)
treeaacca527aede81daddad6707c2f9346fc933a773 /src/H5Iprivate.h
parent16eda679e306fde7fec41f5ff1910be86645e745 (diff)
downloadhdf5-8e27e7357506958128d087c4e93e3dcb4fb52ace.zip
hdf5-8e27e7357506958128d087c4e93e3dcb4fb52ace.tar.gz
hdf5-8e27e7357506958128d087c4e93e3dcb4fb52ace.tar.bz2
Brings atom-->ID and other ID-related changes from develop
Diffstat (limited to 'src/H5Iprivate.h')
-rw-r--r--src/H5Iprivate.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/H5Iprivate.h b/src/H5Iprivate.h
index 78fd84d..d1b6248 100644
--- a/src/H5Iprivate.h
+++ b/src/H5Iprivate.h
@@ -42,7 +42,7 @@
/****************************/
typedef struct H5I_class_t {
- H5I_type_t type_id; /* Class ID for the type */
+ H5I_type_t type; /* Class "value" for the type */
unsigned flags; /* Class behavior flags */
unsigned reserved; /* Number of reserved IDs for this type */
/* [A specific number of type entries may be
@@ -70,7 +70,9 @@ H5_DLL int H5I_get_ref(hid_t id, hbool_t app_ref);
H5_DLL int H5I_inc_ref(hid_t id, hbool_t app_ref);
H5_DLL int H5I_dec_ref(hid_t id);
H5_DLL int H5I_dec_app_ref(hid_t id);
+H5_DLL int H5I_dec_app_ref_async(hid_t id, void **token);
H5_DLL int H5I_dec_app_ref_always_close(hid_t id);
+H5_DLL int H5I_dec_app_ref_always_close_async(hid_t id, void **token);
H5_DLL int H5I_dec_type_ref(H5I_type_t type);
H5_DLL herr_t H5I_find_id(const void *object, H5I_type_t type, hid_t *id /*out*/);
@@ -86,7 +88,7 @@ H5_DLL herr_t H5I_find_id(const void *object, H5I_type_t type, hid_t *id /*o
/* Functions that manipulate objects */
H5_DLL void * H5I_object(hid_t id);
-H5_DLL void * H5I_object_verify(hid_t id, H5I_type_t id_type);
+H5_DLL void * H5I_object_verify(hid_t id, H5I_type_t type);
H5_DLL void * H5I_remove(hid_t id);
H5_DLL void * H5I_subst(hid_t id, const void *new_object);
H5_DLL htri_t H5I_is_file_object(hid_t id);