X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9104957deccc59e0e804215d5db498fabfd40d29..39c935d6d5ee86d153f6f7e6a10d723ae7c57f6f:/examples/s4u/actor-daemon/s4u-actor-daemon.cpp diff --git a/examples/s4u/actor-daemon/s4u-actor-daemon.cpp b/examples/s4u/actor-daemon/s4u-actor-daemon.cpp index 1262f9fa8f..6be2220c43 100644 --- a/examples/s4u/actor-daemon/s4u-actor-daemon.cpp +++ b/examples/s4u/actor-daemon/s4u-actor-daemon.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2017-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2017-2021. 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_daemon, "Messages specific for this s4u example"); -/* The worker process, working for a while before leaving */ +/* The worker actor, working for a while before leaving */ static void worker() { XBT_INFO("Let's do some work (for 10 sec on Boivin)."); @@ -16,7 +16,7 @@ static void worker() XBT_INFO("I'm done now. I leave even if it makes the daemon die."); } -/* The daemon, displaying a message every 3 seconds until all other processes stop */ +/* The daemon, displaying a message every 3 seconds until all other actors stop */ static void my_daemon() { simgrid::s4u::Actor::self()->daemonize(); @@ -26,7 +26,7 @@ static void my_daemon() simgrid::s4u::this_actor::sleep_for(3.0); } - XBT_INFO("I will never reach that point: daemons are killed when regular processes are done"); + XBT_INFO("I will never reach that point: daemons are killed when regular actors are done"); } int main(int argc, char* argv[])