X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a769fcb118ea8b5e3fc8de4fcf920c3d656b9e71..cdac506670725ae4fe40b3b1a31ceeb9488ce53a:/examples/python/actor-kill/actor-kill.py diff --git a/examples/python/actor-kill/actor-kill.py b/examples/python/actor-kill/actor-kill.py index bfa31a3adb..a3118eca8f 100644 --- a/examples/python/actor-kill/actor-kill.py +++ b/examples/python/actor-kill/actor-kill.py @@ -35,7 +35,7 @@ def killer(): this_actor.sleep_for(2) this_actor.info("Kill the victim A") # - and then kill it - this_actor.kill(victimA.pid) # Kill by PID is legit + Actor.by_pid(victimA.pid).kill() # You can retrieve an actor from its PID (and then kill it) this_actor.sleep_for(1) @@ -52,7 +52,7 @@ def killer(): this_actor.sleep_for(1) this_actor.info("Killing everybody but myself") - this_actor.kill_all() + Actor.kill_all() this_actor.info("OK, goodbye now. I commit a suicide.") this_actor.exit()