Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Actually free the memory in these cases, should fix leaks and crashes on 32 bits.
[simgrid.git] / examples / smpi / trace_call_location / trace_call_location.c
index 4397aaf18c6161775b073b2e71e8d9e6e701e129..f2c508156e0f0967354b2cf186ea8681232873b1 100644 (file)
@@ -12,6 +12,7 @@ int main(int argc, char *argv[])
 {
   MPI_Init(&argc, &argv);
   MPI_Barrier (MPI_COMM_WORLD);
+  sleep(1000);
   MPI_Finalize();
   return 0;
 }