diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2015-03-09 00:41:54 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2015-03-09 00:41:54 (GMT) |
commit | 2a4ea9b24e5d28598b627fca39fb42a9baedfaa3 (patch) | |
tree | 5952db2c3be4eba3007958ccc98942cd255f776f /src/H5public.h | |
parent | 63bd09ec8bb62e31b7ca52ce4c36d9bfd143c555 (diff) | |
download | hdf5-2a4ea9b24e5d28598b627fca39fb42a9baedfaa3.zip hdf5-2a4ea9b24e5d28598b627fca39fb42a9baedfaa3.tar.gz hdf5-2a4ea9b24e5d28598b627fca39fb42a9baedfaa3.tar.bz2 |
[svn-r26392] Reinstates r26327-8, which had been reverted due to failures on
Solaris and OS X.
Added public API functions that expose the C library's memory allocator
for use in filter functions that need to allocate or resize buffers.
Intended for use with filter plugins, particularly on Windows, where C
runtime (CRT) issues can cause problems.
Fixes: HDFFV-9100
Tested on: h5committest + OS X (quail) + Solaris (emu)
Diffstat (limited to 'src/H5public.h')
-rw-r--r-- | src/H5public.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5public.h b/src/H5public.h index 673aa6f..0e866be 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -332,6 +332,8 @@ H5_DLL herr_t H5get_libversion(unsigned *majnum, unsigned *minnum, H5_DLL herr_t H5check_version(unsigned majnum, unsigned minnum, unsigned relnum); H5_DLL herr_t H5free_memory(void *mem); +H5_DLL void *H5allocate_memory(size_t size, hbool_t clear); +H5_DLL void *H5resize_memory(void *mem, size_t size); #ifdef __cplusplus } |