summaryrefslogtreecommitdiffstats
path: root/src/H5MP.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2012-03-21 15:10:17 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2012-03-21 15:10:17 (GMT)
commiteb89d7b53ab95623ab454186a602e1cafc7391f0 (patch)
treeceafe458b3011e38853e765352d3c7e59bbecce1 /src/H5MP.c
parent3e468e6ff65d540a439e99ea568a6bff7add7cea (diff)
downloadhdf5-eb89d7b53ab95623ab454186a602e1cafc7391f0.zip
hdf5-eb89d7b53ab95623ab454186a602e1cafc7391f0.tar.gz
hdf5-eb89d7b53ab95623ab454186a602e1cafc7391f0.tar.bz2
[svn-r22105] Description:
Bring r20557:22085 from trunk to this branch, also fixing some other issues/failures in the branch simultaneously. The h5repack tests are still failing, but Neil will be checking into those, so the branch can be fully functional again. Tested on: Mac OSX/64 10.7.3 (amazon) w/debug
Diffstat (limited to 'src/H5MP.c')
-rw-r--r--src/H5MP.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5MP.c b/src/H5MP.c
index b668d0c..4820b76 100644
--- a/src/H5MP.c
+++ b/src/H5MP.c
@@ -92,7 +92,7 @@ H5MP_create(size_t page_size, unsigned flags)
H5MP_pool_t *mp = NULL; /* New memory pool header */
H5MP_pool_t *ret_value; /* Return value */
- FUNC_ENTER_NOAPI(H5MP_create, NULL)
+ FUNC_ENTER_NOAPI(NULL)
/* Allocate space for the pool header */
if(NULL == (mp = H5FL_MALLOC(H5MP_pool_t)))
@@ -143,7 +143,7 @@ H5MP_new_page(H5MP_pool_t *mp, size_t page_size)
H5MP_page_blk_t *first_blk; /* Pointer to first block in page */
H5MP_page_t *ret_value; /* Return value */
- FUNC_ENTER_NOAPI_NOINIT(H5MP_new_page)
+ FUNC_ENTER_NOAPI_NOINIT
/* Sanity check */
HDassert(mp);
@@ -214,7 +214,7 @@ H5MP_malloc (H5MP_pool_t *mp, size_t request)
size_t needed; /* Size requested, plus block header and alignment */
void *ret_value; /* Return value */
- FUNC_ENTER_NOAPI(H5MP_malloc, NULL)
+ FUNC_ENTER_NOAPI(NULL)
/* Sanity check */
HDassert(mp);
@@ -353,7 +353,7 @@ H5MP_free(H5MP_pool_t *mp, void *spc)
H5MP_page_t *spc_page; /* Page containing block to free */
void *ret_value = NULL; /* Return value */
- FUNC_ENTER_NOAPI_NOFUNC(H5MP_free)
+ FUNC_ENTER_NOAPI_NOINIT_NOERR
/* Sanity check */
HDassert(mp);
@@ -438,7 +438,7 @@ H5MP_close(H5MP_pool_t *mp)
{
herr_t ret_value = SUCCEED; /* Return value */
- FUNC_ENTER_NOAPI(H5MP_close, FAIL)
+ FUNC_ENTER_NOAPI(FAIL)
/* Release memory for pool pages */
if(mp->first != NULL) {