Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix leak of memory caused to some Events
[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   msg_comm_t comm_received1 = NULL, comm_received2 = NULL;
26
27   comm_received1 = MSG_task_irecv(&task1, "mymailbox");
28   comm_received2 = MSG_task_irecv(&task2, "mymailbox");
29
30   MSG_comm_wait(comm_received1, -1);
31   MSG_comm_wait(comm_received2, -1);
32
33   XBT_INFO("OK");
34   return 0;
35 }
36
37 static int client(int argc, char *argv[])
38 {
39   msg_task_t task = MSG_task_create(argv[1], 0, 10000, NULL);
40
41   MSG_task_send(task, "mymailbox");
42
43   XBT_INFO("Sent!");
44   return 0;
45 }
46
47 int main(int argc, char *argv[])
48 {
49   MSG_init(&argc, argv);
50
51   MSG_create_environment("platform.xml");
52
53   MSG_function_register("server", server);
54   MSG_function_register("client", client);
55   MSG_launch_application("deploy_electric_fence.xml");
56
57   MSG_main();
58   return 0;
59 }