Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
today is doomsday: platform.xml is sacrificed for the greater good
[simgrid.git] / examples / msg / process-suspend / process-suspend.c
1 /* Copyright (c) 2007, 2009-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "simgrid/msg.h"
8
9 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_process_suspend, "Messages specific for this msg example");
10
11 /* The Lazy guy only wants to sleep, but can be awaken by the dream_master process. */
12 static int lazy_guy(int argc, char *argv[])
13 {
14   XBT_INFO("Nobody's watching me ? Let's go to sleep.");
15   MSG_process_suspend(MSG_process_self());       /* - Start by suspending itself */
16   XBT_INFO("Uuuh ? Did somebody call me ?");
17
18   XBT_INFO("Going to sleep...");                 /* - Then repetitively go to sleep, but got awaken */
19   MSG_process_sleep(10.0);
20   XBT_INFO("Mmm... waking up.");
21
22   XBT_INFO("Going to sleep one more time...");
23   MSG_process_sleep(10.0);
24   XBT_INFO("Waking up once for all!");
25
26   XBT_INFO("Mmmh, goodbye now.");
27   return 0;
28 }
29
30 /* The Dream master: */
31 static int dream_master(int argc, char *argv[])
32 {
33   msg_process_t lazy = NULL;
34
35   XBT_INFO("Let's create a lazy guy."); /* - Create a lazy_guy process */
36   lazy = MSG_process_create("Lazy", lazy_guy, NULL, MSG_host_self());
37   XBT_INFO("Let's wait a little bit...");
38   MSG_process_sleep(10.0);              /* - Wait for 10 seconds */
39   XBT_INFO("Let's wake the lazy guy up! >:) BOOOOOUUUHHH!!!!");
40   MSG_process_resume(lazy);             /* - Then wake up the lazy_guy */
41
42   MSG_process_sleep(5.0);               /* Repeat two times: */
43   XBT_INFO("Suspend the lazy guy while he's sleeping...");
44   MSG_process_suspend(lazy);            /* - Suspend the lazy_guy while he's asleep */
45   XBT_INFO("Let him finish his siesta.");
46   MSG_process_sleep(10.0);              /* - Wait for 10 seconds */
47   XBT_INFO("Wake up, lazy guy!");
48   MSG_process_resume(lazy);             /* - Then wake up the lazy_guy again */
49
50   MSG_process_sleep(5.0);
51   XBT_INFO("Suspend again the lazy guy while he's sleeping...");
52   MSG_process_suspend(lazy);
53   XBT_INFO("This time, don't let him finish his siesta.");
54   MSG_process_sleep(2.0);
55   XBT_INFO("Wake up, lazy guy!");
56   MSG_process_resume(lazy);
57
58   XBT_INFO("OK, goodbye now.");
59   return 0;
60 }
61
62 int main(int argc, char *argv[])
63 {
64   msg_error_t res = MSG_OK;
65
66   MSG_init(&argc, argv);
67   xbt_assert(argc > 1, "Usage: %s platform_file\n\tExample: %s msg_platform.xml\n", argv[0], argv[0]);
68
69   MSG_create_environment(argv[1]);  /* - Load the platform description */
70   MSG_function_register("dream_master", dream_master); /* - Create and deploy the dream_master */
71   xbt_dynar_t hosts = MSG_hosts_as_dynar();
72   MSG_process_create("dream_master", dream_master, NULL, xbt_dynar_getfirst_as(hosts, msg_host_t));
73   xbt_dynar_free(&hosts);
74   res = MSG_main();                 /* - Run the simulation */
75
76   XBT_INFO("Simulation time %g", MSG_get_clock());
77   return res != MSG_OK;
78 }