X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4e3c3980b7a4ec124a3ddc3ee8d7822f4048fdeb..5811ded710c22d5cdc908db44b8282519e4f543e:/src/smpi/smpi_dvfs.cpp diff --git a/src/smpi/smpi_dvfs.cpp b/src/smpi/smpi_dvfs.cpp index c5d9142d9a..1ab64e03a2 100644 --- a/src/smpi/smpi_dvfs.cpp +++ b/src/smpi/smpi_dvfs.cpp @@ -20,7 +20,7 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_dvfs, smpi, "Logging specific to SMPI (expe */ double smpi_get_host_power_peak_at(int pstate_index) { - return simcall_host_get_power_peak_at(SIMIX_host_self(), pstate_index); + return SIMIX_host_self()->powerPeakAt(pstate_index); } /** @@ -30,7 +30,7 @@ double smpi_get_host_power_peak_at(int pstate_index) */ double smpi_get_host_current_power_peak(void) { - return simcall_host_get_current_power_peak(SIMIX_host_self()); + return SIMIX_host_self()->currentPowerPeak(); } /**