diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-05-20 18:43:31 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-05-20 18:43:31 (GMT) |
commit | 03ab48c9c306fee878c4f3a97f858f90c078bfdf (patch) | |
tree | 5b2feadc09e9654a47f1af5d9512482fe36327d8 /testpar | |
parent | 75494847bb75617e90edb001ff69e555532499fa (diff) | |
download | hdf5-03ab48c9c306fee878c4f3a97f858f90c078bfdf.zip hdf5-03ab48c9c306fee878c4f3a97f858f90c078bfdf.tar.gz hdf5-03ab48c9c306fee878c4f3a97f858f90c078bfdf.tar.bz2 |
[svn-r5444] Purpose:
Code cleanup
Description:
Clean up warnings on IRIX64 6.5 (modi4)
Platforms tested:
IRIX64 6.5 (modi4)
Diffstat (limited to 'testpar')
-rw-r--r-- | testpar/t_mdset.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testpar/t_mdset.c b/testpar/t_mdset.c index df12bcd..271aed0 100644 --- a/testpar/t_mdset.c +++ b/testpar/t_mdset.c @@ -68,7 +68,9 @@ void multiple_dset_write(char *filename, int ndatasets) H5Dclose (dataset); if (! ((n+1) % 10)) { +#ifdef VERBOSE printf("created %d datasets\n", n+1); +#endif /* VERBOSE */ MPI_Barrier(MPI_COMM_WORLD); } } @@ -153,7 +155,9 @@ void multiple_group_write(char *filename, int ngroups) H5Gclose(gid); if(! ((m+1) % 10)) { +#ifdef VERBOSE printf("created %d groups\n", m+1); +#endif /* VERBOSE */ MPI_Barrier(MPI_COMM_WORLD); } } @@ -218,7 +222,9 @@ void create_group_recursive(hid_t memspace, hid_t filespace, hid_t gid, MPI_Comm_rank(MPI_COMM_WORLD, &mpi_rank); if(! ((counter+1) % 10)) { +#ifdef VERBOSE printf("created %dth child groups\n", counter+1); +#endif /* VERBOSE */ MPI_Barrier(MPI_COMM_WORLD); } |