summaryrefslogtreecommitdiffstats
path: root/src/H5FDmpiposix.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-05-06 14:20:31 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-05-06 14:20:31 (GMT)
commite19e9e2a28771707f82e663582af80a15ec4602d (patch)
tree1a0e4319cb90207b1f249951195b454e0defc5f6 /src/H5FDmpiposix.c
parent65f6af71109826731bd5389293c26465bcc21d7f (diff)
downloadhdf5-e19e9e2a28771707f82e663582af80a15ec4602d.zip
hdf5-e19e9e2a28771707f82e663582af80a15ec4602d.tar.gz
hdf5-e19e9e2a28771707f82e663582af80a15ec4602d.tar.bz2
[svn-r6803] Purpose:
Code cleanup. Description: Cleaned up a few debugging printfs. Platforms tested: FreeBSD 4.8 (sleipnir) Triple check not needed.
Diffstat (limited to 'src/H5FDmpiposix.c')
-rw-r--r--src/H5FDmpiposix.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/H5FDmpiposix.c b/src/H5FDmpiposix.c
index 1f50ed4..c11c4cc 100644
--- a/src/H5FDmpiposix.c
+++ b/src/H5FDmpiposix.c
@@ -795,9 +795,6 @@ H5FD_mpiposix_open(const char *name, unsigned flags, hid_t fapl_id,
if (gpfs_fcntl(fd, &hint)<0)
HGOTO_ERROR(H5E_FILE, H5E_FCNTL, NULL, "failed to send hints to GPFS");
-
- if (0==mpi_rank)
- HDfprintf(stderr, "HDF5: using GPFS hint mechanism...\n");
}
#endif
@@ -1186,8 +1183,8 @@ H5FD_mpiposix_read(H5FD_t *_file, H5FD_mem_t UNUSED type, hid_t UNUSED dxpl_id,
{
int commrank;
MPI_Comm_rank(MPI_COMM_WORLD, &commrank);
- HDfprintf(stderr, "read: rank=%d file=0x%08lx type=%d, addr=%lu size=%lu\n",
- commrank, (unsigned long)file, (int)type, (unsigned long)addr, (unsigned long)size);
+ HDfprintf(stderr, "read: rank=%d file=0x%08lx type=%d, addr=%a size=%Zu\n",
+ commrank, (unsigned long)file, (int)type, addr, size);
}
#endif
@@ -1315,8 +1312,8 @@ H5FD_mpiposix_write(H5FD_t *_file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr,
{
int commrank;
MPI_Comm_rank(MPI_COMM_WORLD, &commrank);
- HDfprintf(stderr, "write: rank=%d file=0x%08lx type=%d, addr=%lu size=%lu %s\n",
- commrank, (unsigned long)file, (int)type, (unsigned long)addr, (unsigned long)size,
+ HDfprintf(stderr, "write: rank=%d file=0x%08lx type=%d, addr=%a size=%Zu %s\n",
+ commrank, (unsigned long)file, (int)type, addr, size,
0==file->naccess?"(FIRST ACCESS)":"");
}
#endif