From fa19d0ae9393f2f40864104eb2af3fa46015f1a2 Mon Sep 17 00:00:00 2001 From: Frederic Suter Date: Wed, 13 Feb 2019 11:16:12 +0100 Subject: [PATCH] use namespaces --- src/kernel/activity/SynchroRaw.cpp | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) 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 -- 2.20.1