X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/268981d54533fb025d1353582cf229d235eb2fb2..11ae41aad7026933aef0b4b742700df706b6b56d:/examples/msg/msg_test.c diff --git a/examples/msg/msg_test.c b/examples/msg/msg_test.c index e692d0a137..988f18e7aa 100644 --- a/examples/msg/msg_test.c +++ b/examples/msg/msg_test.c @@ -85,6 +85,7 @@ int master(int argc, char *argv[]) if(MSG_host_self()==slaves[i % slaves_count]) { INFO0("Hey ! It's me ! :)"); } + MSG_task_put(todo[i], slaves[i % slaves_count], PORT_22); INFO0("Send completed"); @@ -127,7 +128,7 @@ int slave(int argc, char *argv[]) return 0; } /* end_of_slave */ -/** Receiver function */ +/** Forwarder function */ int forwarder(int argc, char *argv[]) { int i; @@ -167,6 +168,7 @@ int forwarder(int argc, char *argv[]) slaves[i% slaves_count]->name); MSG_task_put(task, slaves[i % slaves_count], PORT_22); + i++; } else { INFO0("Hey ?! What's up ? "); xbt_assert0(0,"Unexpected behavior"); @@ -177,7 +179,6 @@ int forwarder(int argc, char *argv[]) return 0; } /* end_of_forwarder */ - /** Test function */ MSG_error_t test_all(const char *platform_file, const char *application_file)