X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0ca1291c2f63ca6235f4b4885c48413a900aade4..6a6209ae617ba25152ddd80cd3b79d72748d7bd5:/teshsuite/msg/get_sender.c diff --git a/teshsuite/msg/get_sender.c b/teshsuite/msg/get_sender.c index aecfda8418..70138a1e9f 100644 --- a/teshsuite/msg/get_sender.c +++ b/teshsuite/msg/get_sender.c @@ -14,8 +14,7 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(test, "Messages specific to this example"); static int send(int argc, char *argv[]) { XBT_INFO("Sending"); - MSG_task_put(MSG_task_create("Blah", 0.0, 0.0, NULL), MSG_host_self(), - 0); + MSG_task_send(MSG_task_create("Blah", 0.0, 0.0, NULL), MSG_host_get_name(MSG_host_self())); MSG_process_sleep(1.); /* FIXME: if the sender exits before the receiver calls get_sender(), bad thing happens */ XBT_INFO("Exiting"); return 0; @@ -24,21 +23,21 @@ static int send(int argc, char *argv[]) static int receive(int argc, char *argv[]) { XBT_INFO("Receiving"); - m_task_t task = NULL; - MSG_task_get_with_timeout(&task, 0, DBL_MAX); + msg_task_t task = NULL; + MSG_task_receive_with_timeout(&task, MSG_host_get_name(MSG_host_self()), DBL_MAX); xbt_assert(MSG_task_get_sender(task), "No sender received"); XBT_INFO("Got a message sent by '%s'", MSG_process_get_name(MSG_task_get_sender(task))); + MSG_task_destroy(task); return 0; } /** Main function */ int main(int argc, char *argv[]) { - MSG_error_t res = MSG_OK; + msg_error_t res = MSG_OK; - MSG_global_init(&argc, argv); - MSG_set_channel_number(100); + MSG_init(&argc, argv); /* Application deployment */ MSG_function_register("send", &send); @@ -47,7 +46,7 @@ int main(int argc, char *argv[]) MSG_create_environment(argv[1]); MSG_launch_application(argv[1]); res = MSG_main(); - MSG_clean(); + if (res == MSG_OK) return 0; else