Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
MC: move the reversible_race logic to the Transition class
[simgrid.git] / examples / python / actor-lifetime / actor-lifetime.py
index a8dec3f..5e4bb4c 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (c) 2007-2022. The SimGrid Team. All rights reserved.
+# Copyright (c) 2007-2023. 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.
@@ -16,7 +16,7 @@ class Sleeper:
     """This actor just sleeps until termination"""
 
     def __init__(self):
-        this_actor.on_exit(lambda: this_actor.info("Exiting now (done sleeping or got killed)."))
+        this_actor.on_exit(lambda killed: this_actor.info("Exiting now (killed)." if killed else "Exiting now (finishing)."))
 
     def __call__(self):
         this_actor.info("Hello! I go to sleep.")