X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/befbbbe1fbb31663a8f91e24ce12df271cf4ae79..1fa3f778c3669d0658cf13b6da1a5c35b452a678:/examples/msg/mc/bugged2_liveness.c diff --git a/examples/msg/mc/bugged2_liveness.c b/examples/msg/mc/bugged2_liveness.c index 67e91ac89d..19c5740571 100644 --- a/examples/msg/mc/bugged2_liveness.c +++ b/examples/msg/mc/bugged2_liveness.c @@ -1,5 +1,4 @@ -/* Copyright (c) 2012-2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2012-2019. 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. */ @@ -10,9 +9,8 @@ /* LTL property checked : !(GFcs) */ /******************************************************************************/ -#include "simgrid/msg.h" -#include "mc/mc.h" -#include "bugged2_liveness.h" +#include +#include XBT_LOG_NEW_DEFAULT_CATEGORY(bugged3, "my log messages"); @@ -53,7 +51,6 @@ static int client(int argc, char *argv[]) { int my_pid = MSG_process_get_PID(MSG_process_self()); char *my_mailbox = xbt_strdup(argv[1]); - const char* kind; while(1){ XBT_INFO("Client (%s) asks the request", my_mailbox); @@ -62,7 +59,7 @@ static int client(int argc, char *argv[]) msg_task_t answer = NULL; MSG_task_receive(&answer, my_mailbox); - kind = MSG_task_get_name(answer); + const char* kind = MSG_task_get_name(answer); if (!strcmp(kind, "grant")) { XBT_INFO("Client (%s) got the answer (grant). Sleep a bit and release it", my_mailbox);