X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/020b717e6bebcacc1195c7b16929c670684dd1ff..75101a48b15eceef19200f3f6381e6f89370d285:/src/plugins/link_energy.cpp diff --git a/src/plugins/link_energy.cpp b/src/plugins/link_energy.cpp index 33268ad538..682d1dc5fc 100644 --- a/src/plugins/link_energy.cpp +++ b/src/plugins/link_energy.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2017-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2017-2020. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -15,7 +15,7 @@ SIMGRID_REGISTER_PLUGIN(link_energy, "Link energy consumption.", &sg_link_energy_plugin_init) -/** @defgroup plugin_link_energy +/** @defgroup plugin_link_energy Plugin Link Energy This is the link energy plugin, accounting for the dissipated energy in the simulated platform. @@ -34,8 +34,7 @@ SIMGRID_REGISTER_PLUGIN(link_energy, "Link energy consumption.", &sg_link_energy The second property means that when your host is turned off, it will dissipate only 10 Watts (please note that these values are arbitrary). - To simulate the energy-related elements, first call the simgrid#energy#sg_link_energy_plugin_init() before your - #MSG_init(), + To simulate the energy-related elements, first call the sg_link_energy_plugin_init() before loading the platform and then use the following function to retrieve the consumption of a given link: sg_link_get_consumed_energy(). */ @@ -149,8 +148,8 @@ double LinkEnergy::get_consumed_energy() using simgrid::plugin::LinkEnergy; /* **************************** events callback *************************** */ -static void on_communicate(simgrid::kernel::resource::NetworkAction const& action, simgrid::s4u::Host*, - simgrid::s4u::Host*) +static void on_communicate(const simgrid::kernel::resource::NetworkAction& action, const simgrid::s4u::Host*, + const simgrid::s4u::Host*) { XBT_DEBUG("onCommunicate is called"); for (simgrid::kernel::resource::LinkImpl* link : action.links()) { @@ -185,7 +184,7 @@ int sg_link_energy_is_inited() /** @ingroup plugin_link_energy * @brief Enable energy plugin * @details Enable energy plugin to get joules consumption of each cpu. You should call this function before - * #MSG_init(). + * loading your platform. */ void sg_link_energy_plugin_init() { @@ -225,7 +224,7 @@ void sg_link_energy_plugin_init() * The result is that the actor requesting this value will be interrupted, * the value will be updated in kernel mode before returning the control to the requesting actor. */ -double sg_link_get_consumed_energy(sg_link_t link) +double sg_link_get_consumed_energy(const_sg_link_t link) { if (not LinkEnergy::EXTENSION_ID.valid()) throw simgrid::xbt::InitializationError("The Energy plugin is not active. Please call sg_link_energy_plugin_init() "