X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6b188a3ca7fe91cf125a08229fb4fe51eee26e6d..18c57b27dd71ee7839c6a90368c845886a87d638:/src/smpi/smpi_bench.c?ds=sidebyside diff --git a/src/smpi/smpi_bench.c b/src/smpi/smpi_bench.c index d69573014f..8c80d793d4 100644 --- a/src/smpi/smpi_bench.c +++ b/src/smpi/smpi_bench.c @@ -133,11 +133,11 @@ static void smpi_execute_flops(double flops) host = SIMIX_host_self(); XBT_DEBUG("Handle real computation time: %f flops", flops); - action = SIMIX_req_host_execute("computation", host, flops, 1); + action = simcall_host_execute("computation", host, flops, 1); #ifdef HAVE_TRACING - SIMIX_req_set_category (action, TRACE_internal_smpi_get_category()); + simcall_set_category (action, TRACE_internal_smpi_get_category()); #endif - SIMIX_req_host_execution_wait(action); + simcall_host_execution_wait(action); } static void smpi_execute(double duration)