Name: H5Pset_link_creation_order
Signature:
herr_t H5Pset_link_creation_order( hid_t gcpl_id, unsigned crt_order_flags )

Purpose:
Sets creation order tracking and indexing for links in a group.

Description:
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.

Parameters:
hid_t gcpl_id IN: Group creation property list identifier
unsigned  crt_order_flags     IN: Creation order flag(s)

Returns:
Returns a non-negative value if successful; otherwise returns a negative value.

Fortran90 Interface: h5pset_link_creation_order_f
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  
    

History:
Release     C
1.8.0 Function introduced in this release.