X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5c979a2a19b47295bc467cfda3c6541f60b6fe13..7940e7c1b0f2897a82628c707408ad49debd1d3b:/src/simgrid/host.cpp?ds=sidebyside diff --git a/src/simgrid/host.cpp b/src/simgrid/host.cpp index 61de1034ea..b3f5bd6962 100644 --- a/src/simgrid/host.cpp +++ b/src/simgrid/host.cpp @@ -259,15 +259,17 @@ void Host::setPstate(int pstate_index) /** Get the amount of watt dissipated at the given pstate when the host is idling */ double Host::getWattMinAt(int pstate) { - return simgrid::simix::kernel( - std::bind(SIMIX_host_get_wattmin_at, this, pstate)); + return simgrid::simix::kernel(std::bind( + surf_host_get_wattmin_at, this, pstate + )); } /** Get the amount of watt dissipated at the given pstate when the host burns CPU at 100% */ double Host::getWattMaxAt(int pstate) { - return simgrid::simix::kernel( - std::bind(SIMIX_host_get_wattmax_at, this, pstate)); + return simgrid::simix::kernel(std::bind( + surf_host_get_wattmax_at, this, pstate + )); } void Host::getParams(vm_params_t params)