The C Interfaces:
void * H5allocate_memory(
size_t size,
hbool_t clear
)
H5allocate_memory
allocates a memory buffer of
size
bytes that will later be freed internally
by the HDF5 Library.
The boolean clear
parameter specifies whether
the buffer should be initialized.
If clear
is TRUE
,
all bits in the buffer are to be set to 0
(zero);
if clear
is FALSE
,
the buffer will not be initialized.
This function is intended to have the semantics of
malloc()
and calloc()
.
However, unlike malloc()
and calloc()
which allow for a “special” pointer to be returned
instead of NULL
, this function always returns
NULL
on failure or when size
is set to 0
(zero).
At this time, the only intended use for this function is to allocate memory that will be returned to the library as a data buffer from a third-party filter.
It is particularly important to use this function to allocate memory in Microsoft Windows envrionments. In Windows, the C standard library is implemented in dynamic link libraries (DLLs) known as the C run-time (CRT). Each version of Visual Studio comes with multiple versions of the CRT DLLs (debug, release, et cetera) and allocating and freeing memory across DLL boundaries can cause resource leaks and subtle bugs due to heap corruption.
Even when using this function, it is best where possible to ensure that all components of a C application are built with the same version of Visual Studio and configuration (Debug or Release), and thus linked against the same CRT.
Use this function only to allocate memory inside third-party HDF5 filters. It will generally not be safe to use this function to allocate memory for any other purpose.
size_t
size |
|
IN: Specifies the size in bytes of the buffer to be allocated. |
hbool_t clear |
|
IN: Specifies whether the new buffer
is to be initialized to 0 (zero). |
NULL
if size
is 0
(zero).
NULL
on failure.Release | Change |
1.8.15 | C function introduced with this release. |
H5check_version
(
unsigned majnum
,
unsigned minnum
,
unsigned relnum
)
H5check_version
verifies that the version of the HDF5
library with which an application was compiled, as indicated by
the passed parameters, matches the version of the HDF5 library
against which the application is currently linked.
majnum
is the major version number of the HDF library
with which the application was compiled,
minnum
is the minor version number, and
relnum
is the release number.
Consider the following illustration:
HDF5 Release <majnum
>.<minnum
>.<relnum
>
majnum
.
minnum
.
relnum
.
As stated above,
H5check_version
first verifies that the version
of the HDF5 library with which an application was compiled
matches the version of the HDF5 library against which the
application is currently linked.
If this check fails, H5check_version
causes the
application to abort
(by means of a standard C abort()
call)
and prints information that is usually useful for debugging.
This precaution is is taken to avoid the risks of data corruption
or segmentation faults.
The most common cause of this failure is that an application was compiled with one version of HDF5 and is dynamically linked with a different version different version.
If the above test passes, H5check_version
proceeds to
verify the consistency of additional library version information.
This is designed to catch source code inconsistencies that
do not normally cause failures;
if this check reveals an inconsistency, an informational warning
is printed but the application is allowed to run.
unsigned majnum |
IN: HDF5 library major version number. |
unsigned minnum |
IN: HDF5 library minor version number. |
unsigned relnum |
IN: HDF5 library release number. |
SUBROUTINE h5check_version_f(majnum, minnum, relnum, error) INTEGER, INTENT(IN) :: majnum, minnum, relnum INTEGER, INTENT(OUT) :: error
Inputs:
majnum - major version of the library minum - minor version of the library relnum - release version of the library
Outputs:
error - Returns 0 if successful and -1 if fails
Release | Change |
1.4.5 | Fortran subroutine introduced in this release. |
1.8.8 | Fortran updated to Fortran 2003. |
H5close
(void)
H5close
flushes all data to disk,
closes all open HDF5 identifiers, and cleans up all memory used by
the HDF5 library. This function is generally called when the
application calls exit()
, but may be called earlier
in the event of an emergency shutdown or out of a desire to free all
resources used by the HDF5 library.
When the HDF5 Library is employed in a Fortran90 application,
h5close_f
closes the HDF5 Fortran interface
but does not shut down the HDF5 Library, leaving HDF5 available
to other software that may require the resource.
h5open_f
and h5close_f
are
required calls in HDF5 Fortran applications.
SUBROUTINE h5close_f(error) INTEGER, INTENT(OUT) :: error
Outputs:
error - Returns 0 if successful and -1 if fails
Release | Change |
1.8.8 | Fortran subroutine updated modified so that it does not shut down the HDF5 Library. |
H5dont_atexit
(void)
atexit
cleanup routine.
H5dont_atexit
indicates to the library that an
atexit()
cleanup routine should not be installed.
The major purpose for this is in situations where the
library is dynamically linked into an application and is
un-linked from the application before exit()
gets
called. In those situations, a routine installed with
atexit()
would jump to a routine which was
no longer in memory, causing errors.
In order to be effective, this routine must be called before any other HDF function calls, and must be called each time the library is loaded/linked into the application (the first time and after it's been un-loaded).
SUBROUTINE h5dont_atexit_f(error) INTEGER, INTENT(OUT) :: error
Outputs:
error - Returns 0 if successful and -1 if fails
Release | Change |
1.4.5 | Fortran subroutine introduced in this release. |
1.8.8 | Fortran subroutine updated in this release. |
herr_t H5free_memory(void *buf)
H5free_memory
frees memory that has been allocated
by the caller with
H5alloc_memory
or by the HDF5 Library on behalf of the caller.
H5Tget_member_name
provides an example of memory allocation on behalf of the caller:
The function returns a buffer containing the name of a compound datatype
member. It is the caller’s responsibility to eventually free
that buffer with H5free_memory
.
Only use this function to free memory allocated by the HDF5 Library. It will generally not be safe to use this function to free memory allocated by any other means.
Even when using this function, it is still best to ensure that all components of a C application are built with the same version of Visual Studio and build (debug or release) and thus linked against the same CRT.
void *mem |
IN: Buffer to be freed. Can be NULL . |
|