From: Frederic Suter Date: Wed, 13 Feb 2019 10:16:12 +0000 (+0100) Subject: use namespaces X-Git-Tag: v3_22~340 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/fa19d0ae9393f2f40864104eb2af3fa46015f1a2?ds=sidebyside use namespaces --- diff --git a/src/kernel/activity/SynchroRaw.cpp b/src/kernel/activity/SynchroRaw.cpp index 3287a0070e..8023822898 100644 --- a/src/kernel/activity/SynchroRaw.cpp +++ b/src/kernel/activity/SynchroRaw.cpp @@ -9,29 +9,35 @@ #include "src/surf/surf_interface.hpp" XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix_synchro); +namespace simgrid { +namespace kernel { +namespace activity { -simgrid::kernel::activity::RawImpl::~RawImpl() +RawImpl::~RawImpl() { surf_action_->unref(); } -void simgrid::kernel::activity::RawImpl::suspend() +void RawImpl::suspend() { /* The suspension of raw synchros is delayed to when the process is rescheduled. */ } -void simgrid::kernel::activity::RawImpl::resume() +void RawImpl::resume() { /* I cannot resume raw synchros directly. This is delayed to when the process is rescheduled at * the end of the synchro. */ } -void simgrid::kernel::activity::RawImpl::post() +void RawImpl::post() { XBT_IN("(%p)",this); - if (surf_action_->get_state() == simgrid::kernel::resource::Action::State::FAILED) + if (surf_action_->get_state() == resource::Action::State::FAILED) state_ = SIMIX_FAILED; - else if (surf_action_->get_state() == simgrid::kernel::resource::Action::State::FINISHED) + else if (surf_action_->get_state() == resource::Action::State::FINISHED) state_ = SIMIX_SRC_TIMEOUT; SIMIX_synchro_finish(this); XBT_OUT(); } +} // namespace activity +} // namespace kernel +} // namespace simgrid