X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e709643ef0c5b61c6c878016c418bffa2b1b20cd..00fc4a6f291563192c374687f1df411baee7c5ac:/teshsuite/s4u/host-on-off-actors/host-on-off-actors.cpp diff --git a/teshsuite/s4u/host-on-off-actors/host-on-off-actors.cpp b/teshsuite/s4u/host-on-off-actors/host-on-off-actors.cpp index c681ddf59b..62516db724 100644 --- a/teshsuite/s4u/host-on-off-actors/host-on-off-actors.cpp +++ b/teshsuite/s4u/host-on-off-actors/host-on-off-actors.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2010-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2010-2021. 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. */ @@ -25,7 +25,7 @@ XBT_ATTRIB_NORETURN static void actor_daemon() static void commTX() { XBT_INFO(" Start TX"); - std::string* payload = new std::string("COMM"); + auto* payload = new std::string("COMM"); simgrid::s4u::Mailbox::by_name("comm")->put_init(payload, 100000000)->detach(); // We should wait a bit (if not the process will end before the communication, hence an exception on the other side). try { @@ -40,10 +40,9 @@ static void commTX() static void commRX() { - const std::string* payload = nullptr; XBT_INFO(" Start RX"); try { - payload = static_cast(simgrid::s4u::Mailbox::by_name("comm")->get()); + auto payload = simgrid::s4u::Mailbox::by_name("comm")->get_unique(); XBT_INFO(" Receive message: %s", payload->c_str()); } catch (const simgrid::HostFailureException&) { XBT_INFO(" Receive message: HOST_FAILURE"); @@ -51,7 +50,6 @@ static void commRX() XBT_INFO(" Receive message: TRANSFER_FAILURE"); } - delete payload; XBT_INFO(" RX Done"); } @@ -157,16 +155,15 @@ static void test_launcher(int test_number) int main(int argc, char* argv[]) { simgrid::s4u::Engine e(&argc, argv); - xbt_assert(argc == 3, "Usage: %s platform_file test_number\n\tExample: %s msg_platform.xml 1\n", argv[0], argv[0]); + xbt_assert(argc == 3, "Usage: %s platform_file test_number\n\tExample: %s platform.xml 1\n", argv[0], argv[0]); e.load_platform(argv[1]); - simgrid::s4u::Actor::create("test_launcher", simgrid::s4u::Host::by_name("Tremblay"), test_launcher, - std::stoi(argv[2])); + simgrid::s4u::Actor::create("test_launcher", e.host_by_name("Tremblay"), test_launcher, std::stoi(argv[2])); e.run(); - XBT_INFO("Simulation time %g", e.get_clock()); + XBT_INFO("Simulation time %g", simgrid::s4u::Engine::get_clock()); return 0; }