X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ab2f258eb5e0f714e4219125e51c118d958bb66d..9d62905a9c7ddccca81ac0b1b51677b8798026ca:/src/surf/HostImpl.cpp diff --git a/src/surf/HostImpl.cpp b/src/surf/HostImpl.cpp index 6d88f2734f..870c6fc3f9 100644 --- a/src/surf/HostImpl.cpp +++ b/src/surf/HostImpl.cpp @@ -29,7 +29,7 @@ namespace surf { void HostModel::ignoreEmptyVmInPmLMM() { /* iterate for all virtual machines */ - for (s4u::VirtualMachine* ws_vm : vm::VirtualMachineImpl::allVms_) { + for (s4u::VirtualMachine* const& ws_vm : vm::VirtualMachineImpl::allVms_) { Cpu* cpu = ws_vm->pimpl_cpu; int active_tasks = lmm_constraint_get_variable_amount(cpu->constraint()); @@ -80,13 +80,16 @@ Action* HostModel::executeParallelTask(int host_nb, simgrid::s4u::Host** host_li xbt_die("Cannot have a communication that is not a simple point-to-point in this model. You should consider " "using the ptask model"); } - } else + } else { xbt_die( "This model only accepts one of the following. You should consider using the ptask model for the other cases.\n" " - execution with one host only and no communication\n" " - Self-comms with one host only\n" " - Communications with two hosts and no computation"); - xbt_free(host_list); + } + delete[] host_list; + delete[] flops_amount; + delete[] bytes_amount; return action; } @@ -102,7 +105,7 @@ HostImpl::HostImpl(s4u::Host* host) : piface_(host) void HostImpl::getAttachedStorageList(std::vector* storages) { - for (auto s : storage_) + for (auto const& s : storage_) if (s.second->getHost() == piface_->getCname()) storages->push_back(s.second->piface_.getName()); }