Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
VM: code simplification by ensuring that the piface field is set
[simgrid.git] / src / simix / libsmx.cpp
index 91447fe..f31aa0e 100644 (file)
@@ -194,8 +194,7 @@ e_smx_state_t simcall_execution_wait(smx_activity_t execution)
 sg_host_t simcall_vm_create(const char *name, sg_host_t phys_host)
 {
   return simgrid::simix::kernelImmediate([&] {
-    surf_vm_model->createVM(name, phys_host);
-    sg_host_t host = sg_host_by_name(name);
+    sg_host_t host = surf_vm_model->createVM(name, phys_host);
     SIMIX_host_create(host);
 
     return host;