X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5ded2071c37dc28669c79ff593159aea355b2538..0621557a3bed9466230014dd0e70d2d7186c9bd4:/teshsuite/msg/host_on_off/host_on_off_recv.c diff --git a/teshsuite/msg/host_on_off/host_on_off_recv.c b/teshsuite/msg/host_on_off/host_on_off_recv.c index 4d89997dd7..3763cac66e 100644 --- a/teshsuite/msg/host_on_off/host_on_off_recv.c +++ b/teshsuite/msg/host_on_off/host_on_off_recv.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2010-2014. The SimGrid Team. +/* Copyright (c) 2010-2015. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -25,26 +25,25 @@ int master(int argc, char *argv[]) { xbt_ex_t e; TRY { - msg_host_t jupiter = MSG_get_host_by_name("Jupiter"); + msg_host_t jupiter = MSG_host_by_name("Jupiter"); XBT_INFO("Master starting"); MSG_process_sleep(0.5); msg_comm_t comm = NULL; - if (1) { + { msg_task_t task = MSG_task_create("COMM", 0, 100000000, NULL); comm = MSG_task_isend(task, mailbox); } - if(MSG_process_sleep(0.5)) { - XBT_ERROR("Unexpected error while sleeping"); - return 1; - } + MSG_process_sleep(0.5); + XBT_INFO("Turning off the slave host"); MSG_host_off(jupiter); if (comm) { MSG_comm_wait(comm, -1); + MSG_comm_destroy(comm); } XBT_INFO("Master has finished"); } @@ -94,16 +93,14 @@ int main(int argc, char *argv[]) platform_file = argv[1]; application_file = argv[2]; - /* MSG_config("workstation/model","KCCFLN05"); */ - { /* Simulation setting */ - MSG_create_environment(platform_file); - } - { /* Application deployment */ - MSG_function_register("master", master); - MSG_function_register("slave", slave); + /* Simulation setting */ + MSG_create_environment(platform_file); + + /* Application deployment */ + MSG_function_register("master", master); + MSG_function_register("slave", slave); + MSG_launch_application(application_file); - MSG_launch_application(application_file); - } res = MSG_main(); XBT_INFO("Simulation time %g", MSG_get_clock());