ef20e778b3
When we read the input buffer, we don't always get a complete printf output - we sometimes end mid stream. We still need to add the suffix and a <CR> to keep the output working right. This commit was SVN r21706.
24 строки
337 B
C
24 строки
337 B
C
/* -*- C -*-
|
|
*
|
|
* $HEADER$
|
|
*
|
|
* The most basic of MPI applications
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include "mpi.h"
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
int i;
|
|
|
|
MPI_Init(&argc, &argv);
|
|
|
|
for (i=0; i < 100; i++) {
|
|
printf("some output from mpitest to test the xml problem: %d\n", i);
|
|
}
|
|
|
|
MPI_Finalize();
|
|
return 0;
|
|
}
|