summaryrefslogtreecommitdiffstats
path: root/src/H5Sall.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/H5Sall.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/H5Sall.c')
-rw-r--r--src/H5Sall.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/H5Sall.c b/src/H5Sall.c
index 2efdfc9..52ecad8 100644
--- a/src/H5Sall.c
+++ b/src/H5Sall.c
@@ -119,9 +119,6 @@ H5S_all_favail (const H5S_t * UNUSED space, const H5S_sel_iter_t *sel_iter, hsiz
assert (space && H5S_SEL_ALL==space->select.type);
assert (sel_iter);
-#ifdef QAK
- printf("%s: sel_iter->all.elmt_left=%u, max=%u\n",FUNC,(unsigned)sel_iter->all.elmt_left,(unsigned)max);
-#endif /* QAK */
FUNC_LEAVE (MIN(sel_iter->all.elmt_left,max));
} /* H5S_all_favail() */
@@ -454,9 +451,6 @@ H5S_all_read(H5F_t *f, const H5O_layout_t *layout, H5P_genplist_t *dc_plist,
FUNC_ENTER(H5S_all_read, FAIL);
-#ifdef QAK
-printf("%s: check 1.0\n",FUNC);
-#endif /* QAK */
/* Get information about memory and file */
for (u=0; u<mem_space->extent.u.simple.rank; u++) {
switch(mem_space->select.type) {
@@ -525,17 +519,6 @@ printf("%s: check 1.0\n",FUNC);
file_offset[u] = 0;
mem_offset[u] = 0;
-#ifdef QAK
-printf("%s: check 2.0\n",FUNC);
-for (u=0; u<mem_space->extent.u.simple.rank; u++)
- printf("size[%u]=%lu\n",u,(unsigned long)size[u]);
-for (u=0; u<=mem_space->extent.u.simple.rank; u++)
- printf("mem_size[%u]=%lu\n",u,(unsigned long)mem_size[u]);
-for (u=0; u<=mem_space->extent.u.simple.rank; u++)
- printf("mem_offset[%u]=%lu\n",u,(unsigned long)mem_offset[u]);
-for (u=0; u<=mem_space->extent.u.simple.rank; u++)
- printf("file_offset[%u]=%lu\n",u,(unsigned long)file_offset[u]);
-#endif /* QAK */
/* Read data from the file */
if (H5F_arr_read(f, dxpl_id, layout, dc_plist, size,
mem_size, mem_offset, file_offset, buf/*out*/)<0)
@@ -588,10 +571,6 @@ H5S_all_write(H5F_t *f, const struct H5O_layout_t *layout, H5P_genplist_t *dc_pl
FUNC_ENTER(H5S_all_write, FAIL);
-#ifdef QAK
-printf("%s: check 1.0\n",FUNC);
-#endif /* QAK */
-
/* Get information about memory and file */
for (u=0; u<mem_space->extent.u.simple.rank; u++) {
switch(mem_space->select.type) {
@@ -660,17 +639,6 @@ printf("%s: check 1.0\n",FUNC);
file_offset[u] = 0;
mem_offset[u] = 0;
-#ifdef QAK
-printf("%s: check 2.0\n",FUNC);
-for (u=0; u<mem_space->extent.u.simple.rank; u++)
- printf("size[%u]=%lu\n",u,(unsigned long)size[u]);
-for (u=0; u<=mem_space->extent.u.simple.rank; u++)
- printf("mem_size[%u]=%lu\n",u,(unsigned long)mem_size[u]);
-for (u=0; u<=mem_space->extent.u.simple.rank; u++)
- printf("mem_offset[%u]=%lu\n",u,(unsigned long)mem_offset[u]);
-for (u=0; u<=mem_space->extent.u.simple.rank; u++)
- printf("file_offset[%u]=%lu\n",u,(unsigned long)file_offset[u]);
-#endif /* QAK */
/* Write data to the file */
if (H5F_arr_write(f, dxpl_id, layout, dc_plist, size,
mem_size, mem_offset, file_offset, buf)<0)