X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b570efb92a5785e2283c9116869e8773e03a3f81..3c7c64745aa5e60415bb85af482c7b0d0fca2b2b:/examples/cpp/trace-host-user-variables/s4u-trace-host-user-variables.cpp diff --git a/examples/cpp/trace-host-user-variables/s4u-trace-host-user-variables.cpp b/examples/cpp/trace-host-user-variables/s4u-trace-host-user-variables.cpp index 75cab9944b..8dc6247432 100644 --- a/examples/cpp/trace-host-user-variables/s4u-trace-host-user-variables.cpp +++ b/examples/cpp/trace-host-user-variables/s4u-trace-host-user-variables.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2010-2022. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2010-2023. 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. */ @@ -12,10 +12,11 @@ #include "simgrid/s4u.hpp" XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this s4u example"); +namespace sg4 = simgrid::s4u; static void trace_fun() { - const auto host = simgrid::s4u::this_actor::get_host()->get_name(); + const auto host = sg4::this_actor::get_host()->get_name(); // the hostname has an empty HDD with a capacity of 100000 (bytes) simgrid::instr::set_host_variable(host, "HDD_capacity", 100000); @@ -23,7 +24,7 @@ static void trace_fun() for (int i = 0; i < 10; i++) { // create and execute a task just to make the simulated time advance - simgrid::s4u::this_actor::execute(1e4); + sg4::this_actor::execute(1e4); // ADD: after the execution of this task, the HDD utilization increases by 100 (bytes) simgrid::instr::add_host_variable(host, "HDD_utilization", 100); @@ -31,7 +32,7 @@ static void trace_fun() for (int i = 0; i < 10; i++) { // create and execute a task just to make the simulated time advance - simgrid::s4u::this_actor::execute(1e4); + sg4::this_actor::execute(1e4); // SUB: after the execution of this task, the HDD utilization decreases by 100 (bytes) simgrid::instr::sub_host_variable(host, "HDD_utilization", 100); @@ -40,7 +41,7 @@ static void trace_fun() int main(int argc, char* argv[]) { - simgrid::s4u::Engine e(&argc, argv); + sg4::Engine e(&argc, argv); xbt_assert(argc > 1, "Usage: %s platform_file\n \tExample: %s small_platform.xml\n", argv[0], argv[0]); e.load_platform(argv[1]); @@ -49,13 +50,12 @@ int main(int argc, char* argv[]) simgrid::instr::declare_host_variable("HDD_capacity"); simgrid::instr::declare_host_variable("HDD_utilization", "1 0 0"); // red color - simgrid::s4u::Actor::create("master", e.host_by_name("Tremblay"), trace_fun); + sg4::Actor::create("master", e.host_by_name("Tremblay"), trace_fun); e.run(); // get user declared variables - const auto& host_variables = simgrid::instr::get_host_variables(); - if (not host_variables.empty()) { + if (const auto& host_variables = simgrid::instr::get_host_variables(); not host_variables.empty()) { XBT_INFO("Declared host variables:"); for (const auto& var : host_variables) XBT_INFO("%s", var.c_str());