Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Indent the rest of the code (examples, buildtools, doc...) except for examples/SMPI...
[simgrid.git] / examples / msg / mc / bugged2.c
index 180db60..e5040b7 100644 (file)
@@ -7,47 +7,49 @@
 #include <mc/modelchecker.h>
 #define N 3
 
-XBT_LOG_NEW_DEFAULT_CATEGORY(example,"this example");
+XBT_LOG_NEW_DEFAULT_CATEGORY(example, "this example");
 
-int server(int argc,char *argv[]);
-int client(int argc,char *argv[]);
+int server(int argc, char *argv[]);
+int client(int argc, char *argv[]);
 
-int server(int argc,char *argv[])
+int server(int argc, char *argv[])
 {
   m_task_t task1, task2;
   long val1, val2;
 
-  MSG_task_receive(&task1,"mymailbox");
-  val1 = (long)MSG_task_get_data(task1);
+  MSG_task_receive(&task1, "mymailbox");
+  val1 = (long) MSG_task_get_data(task1);
   INFO1("Received %lu", val1);
 
-  MSG_task_receive(&task2,"mymailbox");
-  val2 = (long)MSG_task_get_data(task2);
+  MSG_task_receive(&task2, "mymailbox");
+  val2 = (long) MSG_task_get_data(task2);
   INFO1("Received %lu", val2);
 
-  MC_assert( min(val1, val2) == 1 );
+  MC_assert(min(val1, val2) == 1);
 
   INFO0("OK");
   return 0;
 }
 
-int client(int argc,char *argv[])
+int client(int argc, char *argv[])
 {
-  m_task_t task1 = MSG_task_create("task", 0, 10000, (void *) atol(argv[1]));
-  m_task_t task2 = MSG_task_create("task", 0, 10000, (void *) atol(argv[1]));
+  m_task_t task1 =
+      MSG_task_create("task", 0, 10000, (void *) atol(argv[1]));
+  m_task_t task2 =
+      MSG_task_create("task", 0, 10000, (void *) atol(argv[1]));
 
   INFO1("Send %d!", atoi(argv[1]));
-  MSG_task_send(task1,"mymailbox");
+  MSG_task_send(task1, "mymailbox");
 
   INFO1("Send %d!", atoi(argv[1]));
-  MSG_task_send(task2,"mymailbox");
+  MSG_task_send(task2, "mymailbox");
 
   return 0;
 }
 
-int main(int argc,char*argv[]) 
+int main(int argc, char *argv[])
 {
-  MSG_global_init(&argc,argv);
+  MSG_global_init(&argc, argv);
 
   MSG_create_environment("platform.xml");