summaryrefslogtreecommitdiffstats
path: root/src/H5MM.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-12-11 18:23:41 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-12-11 18:23:41 (GMT)
commitb2e093e28cb2b255bdfac9dac2866793976bd9ea (patch)
tree8ab963a6838fa6cbfd12401ae8d1a7da8e7e5d8d /src/H5MM.c
parentf473fc5cb8a6e100141088568533e9973ad5d95e (diff)
downloadhdf5-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/H5MM.c')
-rw-r--r--src/H5MM.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5MM.c b/src/H5MM.c
index dc3cd2c..5626fdf 100644
--- a/src/H5MM.c
+++ b/src/H5MM.c
@@ -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);