summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authormattjala <124107509+mattjala@users.noreply.github.com>2024-01-23 16:12:33 (GMT)
committerGitHub <noreply@github.com>2024-01-23 16:12:33 (GMT)
commit3293df2533f57520dc49bffe72ed2607b9dd6815 (patch)
treea381eb22366ab27ae87a1b772f10b336708bcade /src
parentc9f03d2f867dcb8a2a3875788e7e99424cc58588 (diff)
downloadhdf5-3293df2533f57520dc49bffe72ed2607b9dd6815.zip
hdf5-3293df2533f57520dc49bffe72ed2607b9dd6815.tar.gz
hdf5-3293df2533f57520dc49bffe72ed2607b9dd6815.tar.bz2
Update H5Fget_obj_count/ids to reflect dtype behavior (#3949)
Diffstat (limited to 'src')
-rw-r--r--src/H5Fpublic.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/H5Fpublic.h b/src/H5Fpublic.h
index 5485f6b..ec4097c 100644
--- a/src/H5Fpublic.h
+++ b/src/H5Fpublic.h
@@ -75,7 +75,7 @@
#define H5F_OBJ_FILE (0x0001u) /**< File objects */
#define H5F_OBJ_DATASET (0x0002u) /**< Dataset objects */
#define H5F_OBJ_GROUP (0x0004u) /**< Group objects */
-#define H5F_OBJ_DATATYPE (0x0008u) /**< Named datatype objects */
+#define H5F_OBJ_DATATYPE (0x0008u) /**< Datatype objects */
#define H5F_OBJ_ATTR (0x0010u) /**< Attribute objects */
#define H5F_OBJ_ALL (H5F_OBJ_FILE | H5F_OBJ_DATASET | H5F_OBJ_GROUP | H5F_OBJ_DATATYPE | H5F_OBJ_ATTR)
#define H5F_OBJ_LOCAL \
@@ -760,7 +760,8 @@ H5_DLL herr_t H5Fget_fileno(hid_t file_id, unsigned long *fileno);
* object identifiers for the file.
*
* To retrieve a count of open identifiers for open objects in all
- * HDF5 application files that are currently open, pass the value
+ * HDF5 application files that are currently open, as well as transient
+ * datatype objects that are not associated with any file, pass the value
* #H5F_OBJ_ALL in \p file_id.
*
* The types of objects to be counted are specified in types as