X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cdf6a962eb4e88efbed3df9c41343adabcf09e6c..aa4c8eeb3051e5adfef317cda2ae590ca13e6f3e:/examples/s4u/actor-suspend/s4u-actor-suspend.cpp diff --git a/examples/s4u/actor-suspend/s4u-actor-suspend.cpp b/examples/s4u/actor-suspend/s4u-actor-suspend.cpp index 3e1a93ec03..c91a52b21e 100644 --- a/examples/s4u/actor-suspend/s4u-actor-suspend.cpp +++ b/examples/s4u/actor-suspend/s4u-actor-suspend.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2017-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2017-2020. 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. */ @@ -7,7 +7,7 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_actor_suspend, "Messages specific for this s4u example"); -/* The Lazy guy only wants to sleep, but can be awaken by the dream_master process. */ +/* The Lazy guy only wants to sleep, but can be awaken by the dream_master actor. */ static void lazy_guy() { XBT_INFO("Nobody's watching me ? Let's go to sleep."); @@ -31,7 +31,7 @@ static void lazy_guy() /* The Dream master: */ static void dream_master() { - XBT_INFO("Let's create a lazy guy."); /* - Create a lazy_guy process */ + XBT_INFO("Let's create a lazy guy."); /* - Create a lazy_guy actor */ simgrid::s4u::ActorPtr lazy = simgrid::s4u::Actor::create("Lazy", simgrid::s4u::this_actor::get_host(), lazy_guy); XBT_INFO("Let's wait a little bit..."); simgrid::s4u::this_actor::sleep_for(10); /* - Wait for 10 seconds */