X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3c9bf25b086ad8a9f4eb32420ef6693c8e796f22..f905895de23cb0b3fe314fdbc5a7a827588dec98:/src/smpi/smpi_bench.c diff --git a/src/smpi/smpi_bench.c b/src/smpi/smpi_bench.c index aec13c01c4..73a3445a0c 100644 --- a/src/smpi/smpi_bench.c +++ b/src/smpi/smpi_bench.c @@ -17,7 +17,7 @@ void smpi_bench_end() int rank = smpi_mpi_comm_rank_self(smpi_mpi_global->mpi_comm_world); double duration; smx_host_t host; - char compute[] = "compute"; + char computation[] = "computation"; smx_action_t action; smx_mutex_t mutex; smx_cond_t cond; @@ -29,7 +29,7 @@ void smpi_bench_end() SIMIX_mutex_unlock(smpi_global->timers_mutexes[rank]); host = smpi_mpi_global->mpi_comm_world->hosts[rank]; - action = SIMIX_action_execute(host, compute, duration * SMPI_DEFAULT_SPEED); + action = SIMIX_action_execute(host, computation, duration * SMPI_DEFAULT_SPEED); mutex = SIMIX_mutex_init(); cond = SIMIX_cond_init(); @@ -41,7 +41,7 @@ void smpi_bench_end() SIMIX_mutex_destroy(mutex); SIMIX_cond_destroy(cond); - SIMIX_action_destroy(action); + //SIMIX_action_destroy(action); // FIXME: check for success/failure?