Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
replace explicit smpi_sleep calls I introduced in some examples by sleep ones
[simgrid.git] / teshsuite / smpi / mpich-test / pt2pt / sendorder.c
index b95c16e8cba341343512446e5a9132f09571fee0..e6e3f08ec5a1de5e8e9f657010fe1a5356e03fa3 100644 (file)
@@ -24,7 +24,7 @@ void delay( int ms )
   double  deltat = ms * 0.001;
   MPI_Wtime();
   //while (MPI_Wtime() - t < deltat) ;
   double  deltat = ms * 0.001;
   MPI_Wtime();
   //while (MPI_Wtime() - t < deltat) ;
-  smpi_sleep(deltat);
+  sleep(deltat);
 }
 
 void CheckStatus( MPI_Status *status, int tag, int src, int cnt, int *err )
 }
 
 void CheckStatus( MPI_Status *status, int tag, int src, int cnt, int *err )