diff options
author | mattjala <124107509+mattjala@users.noreply.github.com> | 2024-01-20 03:11:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-20 03:11:06 (GMT) |
commit | 51f150a94590f3b495d32c44f6d507eb5a7565a0 (patch) | |
tree | eb2047391dd0379cd5ba1b285f0673b1a4e25d5f /src | |
parent | 3d1fc2c38acb24e70e334c791d5ef94308d15c3e (diff) | |
download | hdf5-51f150a94590f3b495d32c44f6d507eb5a7565a0.zip hdf5-51f150a94590f3b495d32c44f6d507eb5a7565a0.tar.gz hdf5-51f150a94590f3b495d32c44f6d507eb5a7565a0.tar.bz2 |
Update H5Fget_obj_count/ids docs to reflect dtype behavior (#3932)
* Update H5Fget_obj_count/ids to reflect dtype behavior
* Clarify comments on H5Fget_obj_ids
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Fpublic.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/H5Fpublic.h b/src/H5Fpublic.h index adb272e..6db1c71 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 \ @@ -761,7 +761,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 |