X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d1f5e7fabd6c999c95f116c2d422d25d5f228986..324ed35d0489e7df64745a022a3d426ff227fba2:/examples/msg/mc/bugged1_while_liveness.c diff --git a/examples/msg/mc/bugged1_while_liveness.c b/examples/msg/mc/bugged1_while_liveness.c index 95b6e5be36..1e56dada33 100644 --- a/examples/msg/mc/bugged1_while_liveness.c +++ b/examples/msg/mc/bugged1_while_liveness.c @@ -85,7 +85,7 @@ int client(int argc, char *argv[]) if(strcmp(my_mailbox, "1") == 0){ r = 1; cs = 0; - XBT_DEBUG("Propositions changed : r=1, cs=0"); + XBT_INFO("Propositions changed : r=1, cs=0"); } // wait the answer @@ -96,7 +96,7 @@ int client(int argc, char *argv[]) if((strcmp(my_mailbox, "1") == 0) && (strcmp("grant", kind) == 0)){ cs = 1; r = 0; - XBT_DEBUG("Propositions changed : r=0, cs=1"); + XBT_INFO("Propositions changed : r=0, cs=1"); } @@ -110,7 +110,7 @@ int client(int argc, char *argv[]) if(strcmp(my_mailbox, "1") == 0){ cs=0; r=0; - XBT_DEBUG("Propositions changed : r=0, cs=0"); + XBT_INFO("Propositions changed : r=0, cs=0"); } } @@ -131,7 +131,7 @@ int main(int argc, char *argv[]) MSG_function_register("coordinator", coordinator); MSG_function_register("client", client); MSG_launch_application("deploy_bugged1_liveness.xml"); - MSG_main_liveness(automaton, argv[0]); + MSG_main_liveness(automaton); return 0; }