diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-08-20 18:09:28 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-08-20 18:09:28 (GMT) |
commit | 96b3c145b7b8e033fff6504a5dbb88c78c42219b (patch) | |
tree | ffc018237d328eb5b4444d20eba7f52945d818d3 /src/H5Distore.c | |
parent | d29082f1659e2b5faa5fda61003b792cc5c9c4c7 (diff) | |
download | hdf5-96b3c145b7b8e033fff6504a5dbb88c78c42219b.zip hdf5-96b3c145b7b8e033fff6504a5dbb88c78c42219b.tar.gz hdf5-96b3c145b7b8e033fff6504a5dbb88c78c42219b.tar.bz2 |
[svn-r11282] Purpose:
New debugging feature
Description:
Add some code to track where memory from the internal free list allocator
is allocated within the library. It's not quite ready for "prime time" yet,
but it's close enough to be useful.
This is disabled by default and requires the H5FL_TRACK macro in
src/H5FLprivate.h to be uncommented to activate during debugging.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Linux 2.4
Too minor to require full h5committest
Diffstat (limited to 'src/H5Distore.c')
-rw-r--r-- | src/H5Distore.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/H5Distore.c b/src/H5Distore.c index 688b5d4..2a753f0 100644 --- a/src/H5Distore.c +++ b/src/H5Distore.c @@ -2388,8 +2388,7 @@ static void * H5D_istore_chunk_alloc(size_t size, const H5O_pline_t *pline) { void *ret_value=NULL; /* Return value */ - - FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5D_istore_chunk_alloc) + FUNC_ENTER_NOAPI_NOINIT(H5D_istore_chunk_alloc) assert(size); assert(pline); |