From 2aadff70152b2c1953b5776045da0ad05b5ac44d Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Wed, 27 Feb 2019 15:55:56 +0100 Subject: [PATCH 1/1] Anonymize unused parameters. --- src/plugins/host_dvfs.cpp | 15 ++++++++------- src/surf/network_cm02.cpp | 2 +- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/src/plugins/host_dvfs.cpp b/src/plugins/host_dvfs.cpp index 04d3738547..a48bfc90fb 100644 --- a/src/plugins/host_dvfs.cpp +++ b/src/plugins/host_dvfs.cpp @@ -40,14 +40,15 @@ static simgrid::config::Flag cfg_governor("plugin/dvfs/governor", [](std::string val) { if (val != "performance") sg_host_dvfs_plugin_init(); }); -static simgrid::config::Flag cfg_min_pstate("plugin/dvfs/min-pstate", {"plugin/dvfs/min_pstate"}, - "Which pstate is the minimum (and hence fastest) pstate for this governor?", 0, - [](int index) {}); +static simgrid::config::Flag + cfg_min_pstate("plugin/dvfs/min-pstate", {"plugin/dvfs/min_pstate"}, + "Which pstate is the minimum (and hence fastest) pstate for this governor?", 0, [](int) {}); static const int max_pstate_not_limited = -1; -static simgrid::config::Flag cfg_max_pstate("plugin/dvfs/max-pstate", {"plugin/dvfs/max_pstate"}, - "Which pstate is the maximum (and hence slowest) pstate for this governor?", max_pstate_not_limited, - [](int index) {}); +static simgrid::config::Flag + cfg_max_pstate("plugin/dvfs/max-pstate", {"plugin/dvfs/max_pstate"}, + "Which pstate is the maximum (and hence slowest) pstate for this governor?", max_pstate_not_limited, + [](int) {}); /** @addtogroup SURF_plugin_load @@ -305,7 +306,7 @@ public: // FIXME I think that this fires at the same time for all hosts, so when the src sends something, // the dst will be notified even though it didn't even arrive at the recv yet simgrid::s4u::Link::on_communicate.connect( - [this](kernel::resource::NetworkAction* action, s4u::Host* src, s4u::Host* dst) { + [this](kernel::resource::NetworkAction*, s4u::Host* src, s4u::Host* dst) { if ((get_host() == src || get_host() == dst) && iteration_running) { post_task(); } diff --git a/src/surf/network_cm02.cpp b/src/surf/network_cm02.cpp index e884c3bd00..2f78a0de72 100644 --- a/src/surf/network_cm02.cpp +++ b/src/surf/network_cm02.cpp @@ -172,7 +172,7 @@ void NetworkCm02Model::update_actions_state_lazy(double now, double /*delta*/) } } -void NetworkCm02Model::update_actions_state_full(double now, double delta) +void NetworkCm02Model::update_actions_state_full(double /*now*/, double delta) { for (auto it = std::begin(*get_started_action_set()); it != std::end(*get_started_action_set());) { NetworkCm02Action& action = static_cast(*it); -- 2.20.1