From: Christian Heinrich Date: Thu, 5 Jul 2018 12:38:25 +0000 (+0200) Subject: [SMPI] Replace surf_get_clock with SIMIX_get_clock X-Git-Tag: v3_21~559^2~2 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/a1c473c81c3e8a464c4250ab0dfccf2ca59ea63c?ds=sidebyside [SMPI] Replace surf_get_clock with SIMIX_get_clock --- diff --git a/src/smpi/internals/smpi_bench.cpp b/src/smpi/internals/smpi_bench.cpp index ac7f78ca32..f7101a3e4c 100644 --- a/src/smpi/internals/smpi_bench.cpp +++ b/src/smpi/internals/smpi_bench.cpp @@ -166,7 +166,7 @@ void smpi_bench_end() for (auto const& pair : counter_data) { simgrid::instr::VariableType* variable = static_cast(container->type_->by_name(pair.first)); - variable->set_event(surf_get_clock(), pair.second); + variable->set_event(SIMIX_get_clock(), pair.second); } } #endif