Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix dependency issue to prevent problems with make -jx
[simgrid.git] / teshsuite / msg / host_on_off_recv / host_on_off_recv.c
1 /* Copyright (c) 2010-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"            /* Yeah! If you want to use msg, you need to include simgrid/msg.h */
8
9 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, "Messages specific for this msg example");
10
11 static const char* mailbox = "comm";
12
13 static int master(int argc, char *argv[])
14 {
15   msg_host_t jupiter = MSG_host_by_name("Jupiter");
16
17   XBT_INFO("Master starting");
18   MSG_process_sleep(0.5);
19
20   msg_task_t task = MSG_task_create("COMM", 0, 100000000, NULL);
21   msg_comm_t comm = MSG_task_isend(task, mailbox);
22
23   MSG_process_sleep(0.5);
24
25   XBT_INFO("Turning off the slave host");
26   MSG_host_off(jupiter);
27
28   if (comm) {
29     MSG_task_destroy(task);
30     MSG_comm_wait(comm, -1);
31     MSG_comm_destroy(comm);
32   }
33   XBT_INFO("Master has finished");
34
35   return 0;
36 }
37
38 static int slave(int argc, char *argv[])
39 {
40   XBT_INFO("Slave receiving");
41   msg_task_t task = NULL;
42   msg_error_t error = MSG_task_receive(&(task), mailbox);
43   if (error) {
44     XBT_ERROR("Error while receiving message");
45     return 1;
46   }
47
48   XBT_ERROR("Slave should be off already.");
49   return 1;
50 }
51
52 int main(int argc, char *argv[])
53 {
54   msg_error_t res;
55
56   MSG_init(&argc, argv);
57   xbt_assert(argc == 2, "Usage: %s platform_file\n\tExample: %s msg_platform.xml\n", argv[0], argv[0]);
58
59   MSG_create_environment(argv[1]);
60
61   MSG_process_create("master", master, NULL, MSG_get_host_by_name("Tremblay"));
62   MSG_process_create("slave", slave, NULL, MSG_get_host_by_name("Jupiter"));
63
64   res = MSG_main();
65
66   XBT_INFO("Simulation time %g", MSG_get_clock());
67
68   return res != MSG_OK;
69 }