summaryrefslogtreecommitdiffstats
path: root/src/H5HG.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2002-04-25 18:29:27 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2002-04-25 18:29:27 (GMT)
commit53d0c6b050ee99b2844646b4e8990cf82b451eb1 (patch)
treec397e95d3bfad89ae0790a33e70bb5d0849dbec2 /src/H5HG.c
parentfd6731e7cd2aeaf89d3363c15b365c23e81a1e2b (diff)
downloadhdf5-53d0c6b050ee99b2844646b4e8990cf82b451eb1.zip
hdf5-53d0c6b050ee99b2844646b4e8990cf82b451eb1.tar.gz
hdf5-53d0c6b050ee99b2844646b4e8990cf82b451eb1.tar.bz2
[svn-r5261] Purpose:
Code cleanup Description: Remove more debugging printf's that were ifdef'd out. Platforms tested: FreeBSD 4.5 (sleipnir)
Diffstat (limited to 'src/H5HG.c')
-rw-r--r--src/H5HG.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/H5HG.c b/src/H5HG.c
index b37c8fd..7218a82 100644
--- a/src/H5HG.c
+++ b/src/H5HG.c
@@ -121,9 +121,6 @@ H5HG_create (H5F_t *f, size_t size)
if (size<H5HG_MINSIZE)
size = H5HG_MINSIZE;
size = H5HG_ALIGN(size);
-#ifdef QAK
-printf("%s: size=%d\n",FUNC,(int)size);
-#endif /* QAK */
/* Create it */
if (HADDR_UNDEF==(addr=H5MF_alloc(f, H5FD_MEM_GHEAP, (hsize_t)size))) {
@@ -167,9 +164,6 @@ printf("%s: size=%d\n",FUNC,(int)size);
/* The freespace object */
heap->obj[0].size = size - H5HG_SIZEOF_HDR(f);
-#ifdef QAK
-printf("%s: heap->obj[0].size=%d, size=%d\n",FUNC,(int)heap->obj[0].size,(int)size);
-#endif /* QAK */
assert(H5HG_ISALIGNED(heap->obj[0].size));
heap->obj[0].begin = p;
UINT16ENCODE(p, 0); /*object ID*/
@@ -614,9 +608,6 @@ H5HG_insert (H5F_t *f, size_t size, void *obj, H5HG_t *hobj/*out*/)
}
assert (f->shared->ncwfs>0);
assert (f->shared->cwfs[0]==heap);
-#ifdef QAK
-printf("%s: f->shared->cwfs[0]->obj[0].size=%d, size=%d, need=%d, H5HG_SIZEOF_HDR(f)=%d\n",FUNC,(int)f->shared->cwfs[0]->obj[0].size,(int)size,(int)need,(int)H5HG_SIZEOF_HDR(f));
-#endif /* QAK */
#ifdef OLD_WAY
assert (f->shared->cwfs[0]->obj[0].size >= need+H5HG_SIZEOF_HDR(f));
#else /* OLD_WAY */