summaryrefslogtreecommitdiffstats
path: root/src/H5Iprivate.h
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2021-06-18 13:42:23 (GMT)
committerGitHub <noreply@github.com>2021-06-18 13:42:23 (GMT)
commit2e80c9cdec98d6cee5b4609643839a4ad2a848fb (patch)
tree8138b57615d3d983fc1be26e739a834410b25d67 /src/H5Iprivate.h
parent1e29bcbfe24956f0158b3363a3fbb8a42c8e7e0f (diff)
downloadhdf5-2e80c9cdec98d6cee5b4609643839a4ad2a848fb.zip
hdf5-2e80c9cdec98d6cee5b4609643839a4ad2a848fb.tar.gz
hdf5-2e80c9cdec98d6cee5b4609643839a4ad2a848fb.tar.bz2
Brings hash table IDs feature from develop/1.12 (#768)
* Brings updated tid test from develop * Adds empty H5Iint.c and H5Idbg.c files * H5I renaming to match 1.12/develop * Splits off H5I debug code to H5Idbg.c * Splits internal H5I.c functionality to H5Iint.c * Header cleanup * More renaming cleanup to match develop/1.12 * Adds "save last ID" optimization * Adds uthash.h * Adds hash table IDs from develop/1.12 * Committing clang-format changes Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'src/H5Iprivate.h')
-rw-r--r--src/H5Iprivate.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Iprivate.h b/src/H5Iprivate.h
index 6e8bacd..9afcb49 100644
--- a/src/H5Iprivate.h
+++ b/src/H5Iprivate.h
@@ -41,7 +41,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
@@ -71,11 +71,11 @@ 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_always_close(hid_t id);
H5_DLL int H5I_dec_type_ref(H5I_type_t type);
-H5_DLL hid_t H5I_get_file_id(hid_t obj_id, H5I_type_t id_type);
+H5_DLL hid_t H5I_get_file_id(hid_t obj_id, H5I_type_t type);
/* 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);