Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / examples / python / actor-migrate / actor-migrate.py
index c48a0eb..b78dbfc 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (c) 2017-2019. The SimGrid Team. All rights reserved.
+# Copyright (c) 2017-2022. 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.
@@ -47,12 +47,12 @@ def monitor():
     this_actor.sleep_for(5)
 
     this_actor.info(
-        "After 5 seconds, move the process to {:s}".format(jacquelin.name))
+        "After 5 seconds, move the actor to {:s}".format(jacquelin.name))
     actor.host = jacquelin
 
     this_actor.sleep_until(15)
     this_actor.info(
-        "At t=15, move the process to {:s} and resume it.".format(fafard.name))
+        "At t=15, move the actor to {:s} and resume it.".format(fafard.name))
     actor.host = fafard
     actor.resume()