Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
attempt to remove oudated coccinelle stuff
[simgrid.git] / src / smpi / smpi_bench.c
index dbf0672..fcf9a6e 100644 (file)
@@ -154,9 +154,9 @@ void smpi_execute_(double *duration)
 void smpi_execute_flops(double flops) {
   smx_synchro_t action;
   XBT_DEBUG("Handle real computation time: %f flops", flops);
-  action = simcall_process_execute("computation", flops, 1, 0, 0);
+  action = simcall_execution_start("computation", flops, 1, 0, 0);
   simcall_set_category (action, TRACE_internal_smpi_get_category());
-  simcall_process_execution_wait(action);
+  simcall_execution_wait(action);
   smpi_switch_data_segment(smpi_process_index());
 }
 
@@ -648,7 +648,7 @@ void smpi_initialize_global_memory_segments(){
 
 #ifndef HAVE_PRIVATIZATION
   smpi_privatize_global_variables=0;
-  xbt_die("You are trying to use privatization on a system that does not support it. Don't.'")
+  xbt_die("You are trying to use privatization on a system that does not support it. Don't.");
   return;
 #else