X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/48a6c50a85f2d0d71990bd4a57d23fb6d763f64a..07c3e8b3a49e2fa7f2f28df9e40a19ae3f55c090:/teshsuite/msg/get_sender.c diff --git a/teshsuite/msg/get_sender.c b/teshsuite/msg/get_sender.c index 6a766c518d..0f8270c105 100644 --- a/teshsuite/msg/get_sender.c +++ b/teshsuite/msg/get_sender.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2009, 2010. The SimGrid Team. +/* Copyright (c) 2009-2013. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -23,29 +23,30 @@ static int send(int argc, char *argv[]) static int receive(int argc, char *argv[]) { XBT_INFO("Receiving"); - m_task_t task = NULL; + 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_init(&argc, argv); /* Application deployment */ MSG_function_register("send", &send); MSG_function_register("receive", &receive); MSG_create_environment(argv[1]); - MSG_launch_application(argv[1]); + MSG_launch_application(argv[2]); res = MSG_main(); - MSG_clean(); + if (res == MSG_OK) return 0; else