X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/808fd3fed0409880a319cae9b6c3ca115c1c01d1..cdac506670725ae4fe40b3b1a31ceeb9488ce53a:/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 a8547d4f0e..9c0f356462 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-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2017-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. */ @@ -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); @@ -57,9 +57,9 @@ static void killer() simgrid::s4u::Actor::kill_all(); XBT_INFO("OK, goodbye now. I commit a suicide."); - simgrid::s4u::this_actor::kill(); + simgrid::s4u::this_actor::exit(); - XBT_INFO("This line will never get displayed: I'm already dead since the previous line."); + XBT_INFO("This line never gets displayed: I'm already dead since the previous line."); } int main(int argc, char* argv[])