X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/29d98d1ceb682fbc4c734a92353be4b0bcd5d17b..5e472a6023eb14e7396b16fa4eb47c805d8f4acf:/examples/msg/mc/bugged1_liveness.c diff --git a/examples/msg/mc/bugged1_liveness.c b/examples/msg/mc/bugged1_liveness.c index 47107f0fca..05da543dc7 100644 --- a/examples/msg/mc/bugged1_liveness.c +++ b/examples/msg/mc/bugged1_liveness.c @@ -21,7 +21,7 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(bugged1_liveness, "my log messages"); -int r=0; +int r=0; int cs=0; #ifdef GARBAGE_STACK @@ -43,15 +43,15 @@ static int coordinator(int argc, char *argv[]) xbt_dynar_t requests = xbt_dynar_new(sizeof(char *), NULL); char *req; - while(1){ + while(1){ MSG_task_receive(&task, "coordinator"); - const char *kind = MSG_task_get_name(task); - if (!strcmp(kind, "request")) { + const char *kind = MSG_task_get_name(task); + if (!strcmp(kind, "request")) { req = MSG_task_get_data(task); - if (CS_used) { + if (CS_used) { XBT_INFO("CS already used. Queue the request."); xbt_dynar_push(requests, &req); - } else { + } else { if(strcmp(req, "1") != 0){ XBT_INFO("CS idle. Grant immediatly"); answer = MSG_task_create("grant", 0, 1000, NULL); @@ -130,7 +130,7 @@ static int client(int argc, char *argv[]) r=0; XBT_INFO("Propositions changed : r=0, cs=0"); } - + } return 0; }