Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines with new year.
[simgrid.git] / teshsuite / msg / process-lifetime / process-lifetime.c
1 /* Copyright (c) 2007-2020. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "simgrid/msg.h"
7
8 #include <stdio.h> /* snprintf */
9
10 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, "Messages specific for this msg example");
11
12 /* Executed on process termination*/
13 static int my_onexit(XBT_ATTRIB_UNUSED int ignored1, XBT_ATTRIB_UNUSED void* ignored2)
14 {
15   XBT_INFO("Exiting now (done sleeping or got killed)."); /* - Just display an informative message (see tesh file) */
16   return 0;
17 }
18
19 /* Just sleep until termination */
20 static int sleeper(int argc, char* argv[])
21 {
22   xbt_assert(argc == 2);
23   XBT_INFO("Hello! I go to sleep.");
24   MSG_process_on_exit(my_onexit, NULL);
25
26   MSG_process_sleep(xbt_str_parse_int(argv[1], "sleeper process expects an integer parameter but got %s"));
27   XBT_INFO("Done sleeping.");
28   return 0;
29 }
30
31 int main(int argc, char* argv[])
32 {
33   MSG_init(&argc, argv);
34   xbt_assert(argc > 2, "Usage: %s platform_file deployment_file\n"
35                        "\tExample: %s msg_platform.xml msg_deployment.xml\n",
36              argv[0], argv[0]);
37
38   MSG_create_environment(argv[1]); /* - Load the platform description */
39   MSG_function_register("sleeper", sleeper);
40   MSG_launch_application(argv[2]); /* - Deploy the sleeper processes with explicit start/kill times */
41
42   msg_error_t res = MSG_main(); /* - Run the simulation */
43   XBT_INFO("Simulation time %g", MSG_get_clock());
44   return res != MSG_OK;
45 }