Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
please sonar
[simgrid.git] / examples / msg / mc / bugged3.c
index c89b32d..879c37d 100644 (file)
@@ -1,5 +1,4 @@
-/* Copyright (c) 2010-2015. The SimGrid Team.
- * All rights reserved.                                                     */
+/* Copyright (c) 2010-2017. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
 XBT_LOG_NEW_DEFAULT_CATEGORY(bugged3, "this example");
 
-int server(int argc, char *argv[]);
-int client(int argc, char *argv[]);
 
-int server(int argc, char *argv[])
+static int server(int argc, char *argv[])
 {
-  msg_task_t task1,task2;
+  msg_task_t task1 = NULL;
+  msg_task_t task2 = NULL;
 
   msg_comm_t comm1 = MSG_task_irecv(&task1, "mymailbox1");
   msg_comm_t comm2 = MSG_task_irecv(&task2, "mymailbox2");
@@ -39,7 +37,7 @@ int server(int argc, char *argv[])
   return 0;
 }
 
-int client(int argc, char *argv[])
+static int client(int argc, char *argv[])
 {
   msg_task_t task1 = MSG_task_create(argv[1], 0, 10000, NULL);
 
@@ -65,6 +63,5 @@ int main(int argc, char *argv[])
   MSG_launch_application("deploy_bugged3.xml");
 
   MSG_main();
-
   return 0;
 }