X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/96cedde3cdbc0b8ffc3f096a1b65d021b0226f99..aa4c8eeb3051e5adfef317cda2ae590ca13e6f3e:/examples/s4u/actor-kill/s4u-actor-kill.cpp diff --git a/examples/s4u/actor-kill/s4u-actor-kill.cpp b/examples/s4u/actor-kill/s4u-actor-kill.cpp index 785ab6d868..ae162a1ef7 100644 --- a/examples/s4u/actor-kill/s4u-actor-kill.cpp +++ b/examples/s4u/actor-kill/s4u-actor-kill.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. */ @@ -9,11 +9,11 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_actor_kill, "Messages specific for this s4u exa static void victimA_fun() { - simgrid::s4u::this_actor::on_exit([](int, void*) { XBT_INFO("I have been killed!"); }, nullptr); + simgrid::s4u::this_actor::on_exit([](bool /*failed*/) { XBT_INFO("I have been killed!"); }); XBT_INFO("Hello!"); XBT_INFO("Suspending myself"); simgrid::s4u::this_actor::suspend(); /* - Start by suspending itself */ - XBT_INFO("OK, OK. Let's work"); /* - Then is resumed and start to execute a task */ + XBT_INFO("OK, OK. Let's work"); /* - Then is resumed and start to execute some flops */ simgrid::s4u::this_actor::execute(1e9); XBT_INFO("Bye!"); /* - But will never reach the end of it */ } @@ -25,7 +25,7 @@ static void victimB_fun() static void killer() { - XBT_INFO("Hello!"); /* - First start a victim process */ + XBT_INFO("Hello!"); /* - First start a victim actor */ simgrid::s4u::ActorPtr victimA = simgrid::s4u::Actor::create("victim A", simgrid::s4u::Host::by_name("Fafard"), victimA_fun); simgrid::s4u::ActorPtr victimB = @@ -37,7 +37,7 @@ static void killer() simgrid::s4u::this_actor::sleep_for(2); XBT_INFO("Kill the victim A"); /* - and then kill it */ - simgrid::s4u::Actor::kill(victimA->get_pid()); // Kill by PID is legit + simgrid::s4u::Actor::by_pid(victimA->get_pid())->kill(); // You can retrieve an actor from its PID (and then kill it) simgrid::s4u::this_actor::sleep_for(1); @@ -65,10 +65,10 @@ static void killer() int main(int argc, char* argv[]) { simgrid::s4u::Engine e(&argc, argv); - xbt_assert(argc == 2, "Usage: %s platform_file\n\tExample: %s msg_platform.xml\n", argv[0], argv[0]); + xbt_assert(argc == 2, "Usage: %s platform_file\n\tExample: %s ../platforms/small_platform.xml\n", argv[0], argv[0]); e.load_platform(argv[1]); /* - Load the platform description */ - /* - Create and deploy killer process, that will create the victim actors */ + /* - Create and deploy killer actor, that will create the victim actors */ simgrid::s4u::Actor::create("killer", simgrid::s4u::Host::by_name("Tremblay"), killer); e.run(); /* - Run the simulation */