diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-12-11 18:23:41 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-12-11 18:23:41 (GMT) |
commit | b2e093e28cb2b255bdfac9dac2866793976bd9ea (patch) | |
tree | 8ab963a6838fa6cbfd12401ae8d1a7da8e7e5d8d /src | |
parent | f473fc5cb8a6e100141088568533e9973ad5d95e (diff) | |
download | hdf5-b2e093e28cb2b255bdfac9dac2866793976bd9ea.zip hdf5-b2e093e28cb2b255bdfac9dac2866793976bd9ea.tar.gz hdf5-b2e093e28cb2b255bdfac9dac2866793976bd9ea.tar.bz2 |
[svn-r7929] Purpose:
Code cleanup
Description:
Fix H5MM_malloc() and H5MM_calloc() routines to use new FUNC_ENTER macros.
Platforms tested:
FreeBSD 4.9 (sleipnir)
h5committest
Diffstat (limited to 'src')
-rw-r--r-- | src/H5MM.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -58,8 +58,8 @@ static int interface_initialize_g = 0; void * H5MM_malloc(size_t size) { - /* Use FUNC_ENTER_NOAPI_NOINIT here to avoid performance issues */ - FUNC_ENTER_NOAPI_NOINIT(H5MM_malloc); + /* Use FUNC_ENTER_NOAPI_NOINIT_NOFUNC here to avoid performance issues */ + FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5MM_malloc); assert(size); @@ -91,8 +91,8 @@ H5MM_malloc(size_t size) void * H5MM_calloc(size_t size) { - /* Use FUNC_ENTER_NOAPI_NOINIT here to avoid performance issues */ - FUNC_ENTER_NOAPI_NOINIT(H5MM_calloc); + /* Use FUNC_ENTER_NOAPI_NOINIT_NOFUNC here to avoid performance issues */ + FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5MM_calloc); assert(size); |