X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6de7a0e75901e65323b77e9cf9b7f67e8c2b8b55..73e97710413bba3ee2ae8baab0537fbd78811016:/teshsuite/smpi/io-all/io-all.c diff --git a/teshsuite/smpi/io-all/io-all.c b/teshsuite/smpi/io-all/io-all.c index 884bfdd484..0085e1c080 100644 --- a/teshsuite/smpi/io-all/io-all.c +++ b/teshsuite/smpi/io-all/io-all.c @@ -21,18 +21,18 @@ int main( int argc, char *argv[] ) MPI_File fh; MPI_Comm comm; MPI_Status status; - + MPI_Init( &argc, &argv ); - + comm = MPI_COMM_WORLD; MPI_File_open( comm, (char*)"/scratch/testfile", MPI_MODE_RDWR | MPI_MODE_CREATE | MPI_MODE_DELETE_ON_CLOSE, MPI_INFO_NULL, &fh ); MPI_Comm_size( comm, &size ); MPI_Comm_rank( comm, &rank ); buf = (int *)malloc( 10 * sizeof(int) ); buf[0] = rank; - + /* Write to file */ - MPI_File_seek( fh, sizeof(int)*rank, MPI_SEEK_SET ); + MPI_File_seek(fh, sizeof(int) * rank, MPI_SEEK_SET); MPI_File_write_all( fh, buf, 1, MPI_INT, &status ); MPI_Get_count( &status, MPI_INT, &count ); if (count != 1) { @@ -40,7 +40,7 @@ int main( int argc, char *argv[] ) fprintf( stderr, "Wrong count (%d) on write\n", count );fflush(stderr); } /* Write to file, overlapping */ - MPI_File_seek( fh, sizeof(int)*rank, MPI_SEEK_SET ); + MPI_File_seek(fh, sizeof(int) * rank, MPI_SEEK_SET); MPI_File_write_all( fh, buf, 10, MPI_INT, &status ); MPI_Get_count( &status, MPI_INT, &count ); if (count != 10) { @@ -74,10 +74,10 @@ int main( int argc, char *argv[] ) // errs++; // fprintf( stderr, "%d: buf = %d\n", rank, buf[0] );fflush(stderr); // } - + free( buf ); MPI_File_close( &fh ); - + MPI_Finalize(); return errs; }