General purpose library functions (H5)
- H5_ALLOCATE_MEMORY — Allocates memory that will later be freed internally by the HDF5 library
- H5_CHECK_VERSION — Verifies that HDF5 library versions are consistent
- H5_CLOSE — Flushes all data to disk, closes all open objects, and cleans up memory
- H5_DONT_ATEXIT — Instructs library not to install atexit cleanup routine
- H5_FREE_MEMORY — Frees memory allocated by the HDF5 library
- H5_GARBAGE_COLLECT — Garbage collects on all free-lists of all types
- H5_GET_ALLOC_STATS — Gets the memory allocation statistics for the library
- H5_GET_FREE_LIST_SIZES — Gets the current size of the free lists used to manage memory
- H5_GET_LIBVERSION — Returns the HDF library release number
- H5_IS_LIBRARY_THREADSAFE — Determines whether the HDF5 library was built with the thread-safety feature enabled
- H5_OPEN — Initializes the HDF5 library
- H5_RESIZE_MEMORY — Resizes and, if required, re-allocates memory that will later be freed internally by the HDF5 library
- H5_SET_FREE_LIST_LIMITS — Sets free-list size limits
- H5_VERSION_GE — Determines whether the version of the library being used is greater than or equal to the specified version
- H5_VERSION_LE — Determines whether the version of the library being used is less than or equal to the specified version
--- Last Modified: August 23, 2019 | 10:08 AM