Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix parallel tests for chord.
[simgrid.git] / examples / msg / cloud / two_tasks_vm.c
index 063eefe..0e2aaab 100644 (file)
@@ -64,10 +64,10 @@ 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)
@@ -76,6 +76,8 @@ static int master_main(int argc, char *argv[])
   }
 
   MSG_process_sleep(10000);
+  MSG_vm_destroy(vm0);
+  xbt_dynar_free(&hosts_dynar);
   return 1;
 }
 
@@ -101,6 +103,7 @@ 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);
 }