X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6787a8635b89edd97f244af4fbd8becac9b80993..39c935d6d5ee86d153f6f7e6a10d723ae7c57f6f:/examples/c/actor-lifetime/actor-lifetime.c?ds=sidebyside diff --git a/examples/c/actor-lifetime/actor-lifetime.c b/examples/c/actor-lifetime/actor-lifetime.c index 10c6e3556d..1d20ad09ff 100644 --- a/examples/c/actor-lifetime/actor-lifetime.c +++ b/examples/c/actor-lifetime/actor-lifetime.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-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. */ @@ -13,15 +13,14 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(test, "Messages specific for this example"); -/* Executed on process termination*/ -static int my_onexit(XBT_ATTRIB_UNUSED int ignored1, XBT_ATTRIB_UNUSED void* ignored2) +/* Executed on actor termination*/ +static void my_onexit(int ignored1, void* ignored2) { XBT_INFO("Exiting now (done sleeping or got killed)."); /* - Just display an informative message (see tesh file) */ - return 0; } /* Just sleep until termination */ -static void sleeper(XBT_ATTRIB_UNUSED int argc, XBT_ATTRIB_UNUSED char* argv[]) +static void sleeper(int argc, char* argv[]) { sg_actor_on_exit(my_onexit, NULL); @@ -40,7 +39,7 @@ int main(int argc, char* argv[]) simgrid_load_platform(argv[1]); /* - Load the platform description */ simgrid_register_function("sleeper", sleeper); - simgrid_load_deployment(argv[2]); /* - Deploy the sleeper processes with explicit start/kill times */ + simgrid_load_deployment(argv[2]); /* - Deploy the sleeper actors with explicit start/kill times */ simgrid_run(); /* - Run the simulation */