X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b5153dbf05347b73879a8eff9702e9411c61cb56..417742f1c7f6545db82079acd702fde03547d400:/examples/msg/cloud/two_tasks_vm.c diff --git a/examples/msg/cloud/two_tasks_vm.c b/examples/msg/cloud/two_tasks_vm.c index a4c1017e54..15c96989c9 100644 --- a/examples/msg/cloud/two_tasks_vm.c +++ b/examples/msg/cloud/two_tasks_vm.c @@ -1,18 +1,12 @@ -/* - * vm_bug.c - * - * Created on: Jan 30, 2014 - * Author: bedaride - */ - -#include -#include "msg/msg.h" -#include "xbt/sysdep.h" - -#include "xbt/log.h" -#include "xbt/asserts.h" -XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, - "Messages specific for this msg example"); +/* Copyright (c) 2014-2015. The SimGrid Team. + * All rights reserved. */ + +/* This program is free software; you can redistribute it and/or modify it + * under the terms of the license (GNU LGPL) which comes with this package. */ + +#include "simgrid/msg.h" + +XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, "Messages specific for this msg example"); msg_task_t atask = NULL; @@ -65,18 +59,20 @@ static int master_main(int argc, char *argv[]) msg_host_t pm0 = xbt_dynar_get_as(hosts_dynar, 0, msg_host_t); msg_vm_t vm0; vm0 = MSG_vm_create_core(pm0, "VM0"); - + MSG_vm_start(vm0); //MSG_process_sleep(1); - launch_computation_worker(pm0); + launch_computation_worker(vm0); while(MSG_get_clock()<100) { - if (atask != NULL) - XBT_INFO("aTask remaining duration: %g", MSG_task_get_remaining_computation(atask)); - MSG_process_sleep(1); + if (atask != NULL) + XBT_INFO("aTask remaining duration: %g", MSG_task_get_flops_amount(atask)); + MSG_process_sleep(1); } MSG_process_sleep(10000); + MSG_vm_destroy(vm0); + xbt_dynar_free(&hosts_dynar); return 1; } @@ -102,10 +98,8 @@ int main(int argc, char *argv[]){ int res = MSG_main(); XBT_INFO("Bye (simulation time %g)", MSG_get_clock()); + xbt_dynar_free(&hosts_dynar); return !(res == MSG_OK); } - - -