X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4a6b0a991a67e6f2f67c03fed43529e078da7115..29d98d1ceb682fbc4c734a92353be4b0bcd5d17b:/examples/msg/mc/bugged3.c diff --git a/examples/msg/mc/bugged3.c b/examples/msg/mc/bugged3.c index c89b32de39..879c37d9ea 100644 --- a/examples/msg/mc/bugged3.c +++ b/examples/msg/mc/bugged3.c @@ -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. */ @@ -18,12 +17,11 @@ 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; }