Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / examples / msg / mc / electric_fence.c
1 /* Copyright (c) 2013-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 /******************** Non-deterministic message ordering  *********************/
8 /* This example implements one process which receives messages from two other */
9 /* processes. There is no bug on it, it is just provided to test the soundness*/ 
10 /* of the state space reduction with DPOR, if the maximum depth (defined with */
11 /* --cfg=model-check/max_depth:) is reached.                                  */
12 /******************************************************************************/
13
14 #include <simgrid/msg.h>
15 #include <simgrid/modelchecker.h>
16
17 #define N 2
18
19 XBT_LOG_NEW_DEFAULT_CATEGORY(electric_fence, "Example to check the soundness of DPOR");
20
21
22 static int server(int argc, char *argv[])
23 {
24   msg_task_t task1 = NULL, task2 = NULL;
25
26   msg_comm_t comm_received1 = MSG_task_irecv(&task1, "mymailbox");
27   msg_comm_t comm_received2 = MSG_task_irecv(&task2, "mymailbox");
28
29   MSG_comm_wait(comm_received1, -1);
30   MSG_comm_wait(comm_received2, -1);
31
32   XBT_INFO("OK");
33   return 0;
34 }
35
36 static int client(int argc, char *argv[])
37 {
38   msg_task_t task = MSG_task_create(argv[1], 0, 10000, NULL);
39
40   MSG_task_send(task, "mymailbox");
41
42   XBT_INFO("Sent!");
43   return 0;
44 }
45
46 int main(int argc, char *argv[])
47 {
48   MSG_init(&argc, argv);
49
50   MSG_create_environment("platform.xml");
51
52   MSG_function_register("server", server);
53   MSG_function_register("client", client);
54   MSG_launch_application("deploy_electric_fence.xml");
55
56   MSG_main();
57   return 0;
58 }