]> AND Public Git Repository - simgrid.git/blobdiff - examples/s4u/actor-kill/s4u-actor-kill.cpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
doc cosmetics, and cleanup the API
[simgrid.git] / examples / s4u / actor-kill / s4u-actor-kill.cpp
index 785ab6d868165609decb033b437818b161a4e3ee..9c0f356462f938c0b6dd1b884afdaa5a2f9aa3f5 100644 (file)
@@ -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);