Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
various cleanups in actors/processes
[simgrid.git] / src / smpi / smpi_bench.cpp
index f087372..f902f4e 100644 (file)
@@ -78,10 +78,11 @@ void smpi_execute(double duration)
   }
 }
 
-void smpi_execute_public(double duration) {
-    smpi_bench_end();
-    smpi_execute(duration);
-    smpi_bench_begin();
+void smpi_execute_benched(double duration)
+{
+  smpi_bench_end();
+  smpi_execute(duration);
+  smpi_bench_begin();
 }
 
 void smpi_bench_begin()
@@ -427,7 +428,7 @@ extern "C" { /** These functions will be called from the user code **/
     smpi_trace_set_call_location(file, *line);
   }
 
-  /** 
+  /**
    * Required for Fortran if -fsecond-underscore is activated
    */
   void smpi_trace_set_call_location__(const char* file, int* line) {