Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'xbt_random' into 'master'
[simgrid.git] / examples / python / actor-lifetime / actor-lifetime.py
index f408dc1..b64e9b5 100644 (file)
@@ -6,7 +6,7 @@
 # This Python file acts as the foil to the corresponding XML file, where the
 # action takes place: Actors are started and stopped at predefined time
 
-from simgrid import *
+from simgrid import Engine, this_actor
 import sys
 
 
@@ -14,7 +14,8 @@ class Sleeper:
     """This actor just sleeps until termination"""
 
     def __init__(self, *args):
-        this_actor.on_exit(lambda: print("BAAA")) # sys.exit(1); simgrid.info("Exiting now (done sleeping or got killed)."))
+        # sys.exit(1); simgrid.info("Exiting now (done sleeping or got killed)."))
+        this_actor.on_exit(lambda: print("BAAA"))
 
     def __call__(self):
         this_actor.info("Hello! I go to sleep.")