X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/977ce74cee777641db27a02631b20bd3ac793e8b..fbf5fafb60eb44c0c00a7283fd05a6dec5f2b58f:/src/smpi/plugins/sampi_loadbalancer.cpp diff --git a/src/smpi/plugins/sampi_loadbalancer.cpp b/src/smpi/plugins/sampi_loadbalancer.cpp index a49f1c941e..3880e19728 100644 --- a/src/smpi/plugins/sampi_loadbalancer.cpp +++ b/src/smpi/plugins/sampi_loadbalancer.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2018-2019. 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. */ @@ -14,7 +14,7 @@ #include #include "src/kernel/activity/ExecImpl.hpp" -#include "src/simix/ActorImpl.hpp" +#include "src/kernel/actor/ActorImpl.hpp" #include "src/smpi/plugins/load_balancer/load_balancer.hpp" // This is not yet ready to be public XBT_LOG_NEW_DEFAULT_SUBCATEGORY(plugin_load_balancer, smpi, "Logging specific to the SMPI load balancing plugin"); @@ -32,7 +32,7 @@ static simgrid::plugin::loadbalancer::LoadBalancer lb; class MigrateParser : public simgrid::smpi::replay::ActionArgParser { public: double memory_consumption; - void parse(simgrid::xbt::ReplayAction& action, std::string name) + void parse(simgrid::xbt::ReplayAction& action, const std::string&) { // The only parameter is the amount of memory used by the current process. CHECK_ACTION_PARAMS(action, 1, 0); @@ -47,7 +47,7 @@ public: class MigrateAction : public simgrid::smpi::replay::ReplayAction { public: explicit MigrateAction() : ReplayAction("Migrate") {} - void kernel(simgrid::xbt::ReplayAction& action) + void kernel(simgrid::xbt::ReplayAction&) { static std::map migration_call_counter; static simgrid::s4u::Barrier smpilb_bar(smpi_process_count());