summaryrefslogtreecommitdiffstats
path: root/testpar/t_mpi.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2001-08-20 20:05:36 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2001-08-20 20:05:36 (GMT)
commitcc8ba712960e00984f12f45f26615ead88d47a63 (patch)
tree7225eeaca171f7ff10cca8fc30602104219acddf /testpar/t_mpi.c
parent2f680fea22ec9a671e8d1145502499a0d51a4890 (diff)
downloadhdf5-cc8ba712960e00984f12f45f26615ead88d47a63.zip
hdf5-cc8ba712960e00984f12f45f26615ead88d47a63.tar.gz
hdf5-cc8ba712960e00984f12f45f26615ead88d47a63.tar.bz2
[svn-r4399] Purpose:
Code cleanup Description: This was "thrown" together in a quick way to test MPIO functionality. Cleaned out some embrassingly useless declaration to reduce compiler warnings. Platforms tested: modi4-pp and eirene-pp.
Diffstat (limited to 'testpar/t_mpi.c')
-rw-r--r--testpar/t_mpi.c16
1 files changed, 3 insertions, 13 deletions
diff --git a/testpar/t_mpi.c b/testpar/t_mpi.c
index 7f4eef1..d0e6b9d 100644
--- a/testpar/t_mpi.c
+++ b/testpar/t_mpi.c
@@ -33,10 +33,6 @@ test_mpio_overlap_writes(char *filename)
MPI_Info info = MPI_INFO_NULL;
int color, mrc;
MPI_File fh;
- int newrank, newprocs;
- hid_t fid; /* file IDs */
- hid_t acc_tpl; /* File access properties */
- herr_t ret; /* generic return value */
int i;
int vrfyerrs;
char buf[4093]; /* use some prime number for size */
@@ -165,7 +161,7 @@ test_mpio_overlap_writes(char *filename)
* won't abort the remaining test or other separated tests.
*/
void
-test_mpio_offset()
+test_mpio_offset(void)
{
int mpi_size, mpi_rank;
MPI_Offset mpi_off;
@@ -224,22 +220,15 @@ void
test_mpio_gb_file(char *filename)
{
int mpi_size, mpi_rank;
- MPI_Comm comm;
MPI_Info info = MPI_INFO_NULL;
- int color, mrc;
+ int mrc;
MPI_File fh;
- int newrank, newprocs;
- hid_t fid; /* file IDs */
- hid_t acc_tpl; /* File access properties */
- herr_t ret; /* generic return value */
int i, j, n;
int vrfyerrs;
int writerrs; /* write errors */
int ntimes; /* how many times */
char *buf;
char expected;
- int bufsize = MB;
- int stride;
MPI_Offset mpi_off;
MPI_Status mpi_stat;
@@ -415,6 +404,7 @@ usage(void)
}
+int
main(int argc, char **argv)
{
int mpi_size, mpi_rank; /* mpi variables */