Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Revert "Debug the cloud API, it should work as expected now."
[simgrid.git] / examples / msg / cloud / masterslave_virtual_machines.c
index 87d1050..0ed5b90 100644 (file)
@@ -98,6 +98,7 @@ int master(int argc, char *argv[]) {
     argv[2] = NULL;
     MSG_vm_bind(vm, MSG_process_create_with_arguments(slavename,slave_fun,NULL,slaves[i],2,argv));
   }
+  work_batch(slaves_count*2);
 
   XBT_INFO("Migrate everyone to the second host.");
   for (i=0;i<xbt_dynar_length(vms);i++)
@@ -110,7 +111,8 @@ int master(int argc, char *argv[]) {
     MSG_vm_migrate(vm,slaves[2]);
     MSG_vm_resume(vm);
   }
-  work_batch(slaves_count*2);
+
+
 
   XBT_INFO("Let's shut down the simulation. 10 first processes will be shut down cleanly while the second half will forcefully get killed");
   for (i = 0; i < slaves_count; i++) {