X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/353856867665015bd39041aacba13ad22035287c..b8ac69d727c9eddbb832ed08c362c6d28ed32cfd:/src/surf/network_constant.cpp diff --git a/src/surf/network_constant.cpp b/src/surf/network_constant.cpp index fe3356da4f..8d88832c3a 100644 --- a/src/surf/network_constant.cpp +++ b/src/surf/network_constant.cpp @@ -30,6 +30,7 @@ namespace simgrid { xbt_die("Refusing to create the link %s: there is no link in the Constant network model. " "Please remove any link from your platform (and switch to routing='None')", name); + return nullptr; } double NetworkConstantModel::next_occuring_event(double /*now*/) @@ -63,7 +64,7 @@ namespace simgrid { action->latency_ = 0.0; } } - action->updateRemains(action->getCost() * delta / action->m_latInit); + action->updateRemains(action->getCost() * delta / action->initialLatency_); if (action->getMaxDuration() != NO_MAX_DURATION) action->updateMaxDuration(delta); @@ -89,23 +90,16 @@ namespace simgrid { /********** * Action * **********/ - - int NetworkConstantAction::unref() + NetworkConstantAction::NetworkConstantAction(NetworkConstantModel *model_, double size, double latency) + : NetworkAction(model_, size, false) + , initialLatency_(latency) { - m_refcount--; - if (!m_refcount) { - if (action_hook.is_linked()) - p_stateSet->erase(p_stateSet->iterator_to(*this)); - delete this; - return 1; + latency_ = latency; + if (latency_ <= 0.0) { + stateSet_ = getModel()->getDoneActionSet(); + stateSet_->push_back(*this); } - return 0; - } - - void NetworkConstantAction::cancel() - { - return; - } - + variable_ = NULL; + }; } }