diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2003-04-28 21:06:40 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2003-04-28 21:06:40 (GMT) |
commit | 83b2e3213ae50ed5e7859e9ed731c1625249de1b (patch) | |
tree | b15467a719d4df5a8165db875df4ce2d966fec2d /src | |
parent | ebb263afa653599c4ef85d028af6a97fe287686c (diff) | |
download | hdf5-83b2e3213ae50ed5e7859e9ed731c1625249de1b.zip hdf5-83b2e3213ae50ed5e7859e9ed731c1625249de1b.tar.gz hdf5-83b2e3213ae50ed5e7859e9ed731c1625249de1b.tar.bz2 |
[svn-r6767]
Purpose:
Code cleanup
Description:
Removed debug statement bracketed by H5FDmpiposix_DEBUG or alike.
They were added in by mistakes.
Platforms tested:
Did not h5committested but tested in Copper since there changes are
limited in parallel codes.
Misc. update:
Diffstat (limited to 'src')
-rw-r--r-- | src/H5FDmpiposix.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/H5FDmpiposix.c b/src/H5FDmpiposix.c index 6b00dcd..b456c47 100644 --- a/src/H5FDmpiposix.c +++ b/src/H5FDmpiposix.c @@ -561,10 +561,6 @@ H5FD_mpiposix_fapl_copy(const void *_old_fa) int mpi_code; /* MPI return code */ FUNC_ENTER_NOAPI(H5FD_mpiposix_fapl_copy, NULL); -#ifdef H5FDmpio_DEBUG -if (H5FD_mpio_Debug[(int)'t']) -fprintf(stderr, "enter H5FD_mpiposix_fapl_copy\n"); -#endif if (NULL==(new_fa=H5MM_malloc(sizeof(H5FD_mpiposix_fapl_t)))) HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed"); @@ -584,10 +580,6 @@ done: H5MM_xfree(new_fa); } -#ifdef H5FDmpiposix_DEBUG -if (H5FD_mpiposix_Debug[(int)'t']) -fprintf(stderr, "leaving H5FD_mpiposix_fapl_copy\n"); -#endif FUNC_LEAVE_NOAPI(ret_value); } /* end H5FD_mpiposix_fapl_copy() */ @@ -615,10 +607,6 @@ H5FD_mpiposix_fapl_free(void *_fa) H5FD_mpiposix_fapl_t *fa = (H5FD_mpiposix_fapl_t*)_fa; FUNC_ENTER_NOAPI(H5FD_mpiposix_fapl_free, FAIL); -#ifdef H5FDmpiposix_DEBUG -if (H5FD_mpiposix_Debug[(int)'t']) -fprintf(stderr, "in H5FD_mpiposix_fapl_free\n"); -#endif assert(fa); /* Free the internal communicator */ @@ -627,10 +615,6 @@ fprintf(stderr, "in H5FD_mpiposix_fapl_free\n"); H5MM_xfree(fa); done: -#ifdef H5FDmpiposix_DEBUG -if (H5FD_mpiposix_Debug[(int)'t']) -fprintf(stderr, "leaving H5FD_mpiposix_fapl_free\n"); -#endif FUNC_LEAVE_NOAPI(ret_value); } /* end H5FD_mpiposix_fapl_free() */ |