H5Pset_link_creation_order
(
hid_t gcpl_id
,
unsigned crt_order_flags
)
H5Pset_link_creation_order
sets flags
in a group creation property list, gcpl_id
, for
tracking and/or indexing links on creation order.
The following flags are passed in crt_order_flags
:
H5P_CRT_ORDER_TRACKED |
Specifies to track creation order. | |
H5P_CRT_ORDER_INDEXED |
Specifies to index links in the group on creation order. |
If only H5P_CRT_ORDER_TRACKED
is set,
HDF5 will track link creation order in any group created with
the group creation property list gcpl_id
.
If both H5P_CRT_ORDER_TRACKED
and
H5P_CRT_ORDER_INDEXED
are set, HDF5 will track
link creation order in the group and index links on that property.
hid_t gcpl_id |
IN: Group creation property list identifier |
unsigned crt_order_flags |
IN: Creation order flag(s) |
SUBROUTINE h5pset_link_creation_order_f(gcpl_id, crt_order_flags, hdferr) IMPLICIT NONE INTEGER(HID_T), INTENT(IN) :: gcpl_id ! File access property list identifier INTEGER, INTENT(IN) :: crt_order_flags ! Creation order flag(s) INTEGER, INTENT(OUT) :: hdferr ! Error code ! 0 on success and -1 on failure END SUBROUTINE h5pset_link_creation_order_f
Release | C |
1.8.0 | Function introduced in this release. |