From: Frederic Suter Date: Mon, 30 May 2016 18:59:58 +0000 (+0200) Subject: remove soner bugs in async examples X-Git-Tag: v3_14~1095 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/3f6d790c7f4d53cabbbccad1f8198737705c873f remove soner bugs in async examples --- diff --git a/examples/msg/async-wait/async-wait.c b/examples/msg/async-wait/async-wait.c index 814411a868..a25df32bc3 100644 --- a/examples/msg/async-wait/async-wait.c +++ b/examples/msg/async-wait/async-wait.c @@ -35,12 +35,12 @@ static int sender(int argc, char *argv[]) comm = MSG_task_isend(task, mailbox); XBT_INFO("Send to receiver-%ld Task_%d", i % receivers_count, i); - if (sleep_test_time == 0) { /* - "test_time" is set to 0, wait on @ref MSG_comm_wait */ - MSG_comm_wait(comm, -1); - } else { + if (sleep_test_time > 0) { /* - "test_time" is set to 0, wait on @ref MSG_comm_wait */ while (MSG_comm_test(comm) == 0) { /* - Call @ref MSG_comm_test every "test_time" otherwise */ MSG_process_sleep(sleep_test_time); }; + } else { + MSG_comm_wait(comm, -1); } MSG_comm_destroy(comm); } @@ -51,12 +51,12 @@ static int sender(int argc, char *argv[]) task = MSG_task_create("finalize", 0, 0, 0); comm = MSG_task_isend(task, mailbox); XBT_INFO("Send to receiver-%ld finalize", i % receivers_count); - if (sleep_test_time == 0) { - MSG_comm_wait(comm, -1); - } else { + if (sleep_test_time > 0) { while (MSG_comm_test(comm) == 0) { MSG_process_sleep(sleep_test_time); - }; + } + } else { + MSG_comm_wait(comm, -1); } MSG_comm_destroy(comm); } @@ -84,18 +84,18 @@ static int receiver(int argc, char *argv[]) res_irecv = MSG_task_irecv(&(task), mailbox); /* Then it posts asynchronous receives (@ref MSG_task_irecv) and*/ XBT_INFO("Wait to receive a task"); - if (sleep_test_time == 0) { /* - if "test_time" is set to 0, wait on @ref MSG_comm_wait */ - res = MSG_comm_wait(res_irecv, -1); - xbt_assert(res == MSG_OK, "MSG_task_get failed"); - } else { + if (sleep_test_time > 0) { /* - if "test_time" is set to 0, wait on @ref MSG_comm_wait */ while (MSG_comm_test(res_irecv) == 0) { /* - Call @ref MSG_comm_test every "test_time" otherwise */ MSG_process_sleep(sleep_test_time); - }; + } + } else { + res = MSG_comm_wait(res_irecv, -1); + xbt_assert(res == MSG_OK, "MSG_task_get failed"); } MSG_comm_destroy(res_irecv); XBT_INFO("Received \"%s\"", MSG_task_get_name(task)); - if (!strcmp(MSG_task_get_name(task), "finalize")) { /* If the received task is "finalize", the process ends */ + if (strcmp(MSG_task_get_name(task), "finalize") == 0) { /* If the received task is "finalize", the process ends */ MSG_task_destroy(task); break; } diff --git a/examples/msg/async-waitall/async-waitall.c b/examples/msg/async-waitall/async-waitall.c index bdef25d6d3..b3a0b4dcd1 100644 --- a/examples/msg/async-waitall/async-waitall.c +++ b/examples/msg/async-waitall/async-waitall.c @@ -63,7 +63,7 @@ static int receiver(int argc, char *argv[]) MSG_comm_destroy(res_irecv); xbt_assert(res == MSG_OK, "MSG_task_get failed"); XBT_INFO("Received \"%s\"", MSG_task_get_name(task)); - if (!strcmp(MSG_task_get_name(task), "finalize")) { + if (strcmp(MSG_task_get_name(task), "finalize") == 0) { MSG_task_destroy(task); break; } diff --git a/examples/msg/async-waitany/async-waitany.c b/examples/msg/async-waitany/async-waitany.c index f5d76315a0..b4152ab516 100644 --- a/examples/msg/async-waitany/async-waitany.c +++ b/examples/msg/async-waitany/async-waitany.c @@ -37,7 +37,7 @@ static int sender(int argc, char *argv[]) } /* Here we are waiting for the completion of all communications */ - while (!xbt_dynar_is_empty(d)) { + while (xbt_dynar_is_empty(d) == 0) { xbt_dynar_remove_at(d, MSG_comm_waitany(d), &comm); MSG_comm_destroy(comm); }