Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
greatly reduce the amount of atoi in our codebase
[simgrid.git] / examples / msg / mc / bugged3.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 /**************** Shared buffer between asynchronous receives *****************/
8 /* Server process assumes that the data from the second communication comm2   */
9 /* will overwrite the one from the first communication, because of the order  */
10 /* of the wait calls. This is not true because data copy can be triggered by  */
11 /* a call to wait on the other end of the communication (client).             */
12 /* NOTE that the communications use different mailboxes, but they share the   */
13 /* same buffer for reception (task1).                                         */
14 /******************************************************************************/
15
16 #include <simgrid/msg.h>
17 #include <simgrid/modelchecker.h>
18
19 XBT_LOG_NEW_DEFAULT_CATEGORY(bugged3, "this example");
20
21 int server(int argc, char *argv[]);
22 int client(int argc, char *argv[]);
23
24 int server(int argc, char *argv[])
25 {
26   msg_task_t task1;
27   long val1;
28   msg_comm_t comm1, comm2;
29
30   comm1 = MSG_task_irecv(&task1, "mymailbox1");
31   comm2 = MSG_task_irecv(&task1, "mymailbox2");
32   MSG_comm_wait(comm1, -1);
33   MSG_comm_wait(comm2, -1);
34
35   val1 = (long) MSG_task_get_data(task1);
36   XBT_INFO("Received %lu", val1);
37
38   MC_assert(val1 == 2);
39
40   XBT_INFO("OK");
41   return 0;
42 }
43
44 int client(int argc, char *argv[])
45 {
46   int ID = xbt_str_parse_int(argv[1], "Arg 1 is not a numerical ID: %s");
47   msg_task_t task1 = MSG_task_create("task", 0, 10000, (void *) ID);
48
49   char *mbox = bprintf("mymailbox%s", argv[1]);
50
51   XBT_INFO("Send %d!", ID);
52   msg_comm_t comm = MSG_task_isend(task1, mbox);
53   MSG_comm_wait(comm, -1);
54
55   xbt_free(mbox);
56
57   return 0;
58 }
59
60 int main(int argc, char *argv[])
61 {
62   MSG_init(&argc, argv);
63
64   MSG_create_environment("platform.xml");
65
66   MSG_function_register("server", server);
67   MSG_function_register("client", client);
68   MSG_launch_application("deploy_bugged3.xml");
69
70   MSG_main();
71
72   return 0;
73 }