X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/64578ee8e932a2a7e292514c0912f50fe4299220..49a75a876cd9b9284722a63f1b3a02d1283630e1:/src/kernel/activity/ConditionVariableImpl.cpp diff --git a/src/kernel/activity/ConditionVariableImpl.cpp b/src/kernel/activity/ConditionVariableImpl.cpp index 2ed96a7a28..0186959676 100644 --- a/src/kernel/activity/ConditionVariableImpl.cpp +++ b/src/kernel/activity/ConditionVariableImpl.cpp @@ -1,64 +1,35 @@ -/* Copyright (c) 2007-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2019. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ #include "src/kernel/activity/ConditionVariableImpl.hpp" +#include "simgrid/Exception.hpp" #include "src/kernel/activity/MutexImpl.hpp" #include "src/kernel/activity/SynchroRaw.hpp" #include "src/simix/smx_synchro_private.hpp" -#include "xbt/ex.hpp" XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ConditionVariable, simix_synchro, "Condition variables"); -static void _SIMIX_cond_wait(smx_cond_t cond, smx_mutex_t mutex, double timeout, smx_actor_t issuer, - smx_simcall_t simcall); - /********************************* Condition **********************************/ -/** - * \brief Handle a condition waiting simcall without timeouts - */ +/** @brief Handle a condition waiting simcall without timeouts */ void simcall_HANDLER_cond_wait(smx_simcall_t simcall, smx_cond_t cond, smx_mutex_t mutex) { XBT_IN("(%p)", simcall); smx_actor_t issuer = simcall->issuer; - _SIMIX_cond_wait(cond, mutex, -1, issuer, simcall); + cond->wait(mutex, -1, issuer, simcall); XBT_OUT(); } -/** - * \brief Handle a condition waiting simcall with timeouts - */ +/** @brief Handle a condition waiting simcall with timeouts */ void simcall_HANDLER_cond_wait_timeout(smx_simcall_t simcall, smx_cond_t cond, smx_mutex_t mutex, double timeout) { XBT_IN("(%p)", simcall); smx_actor_t issuer = simcall->issuer; - - _SIMIX_cond_wait(cond, mutex, timeout, issuer, simcall); - XBT_OUT(); -} - -static void _SIMIX_cond_wait(smx_cond_t cond, smx_mutex_t mutex, double timeout, smx_actor_t issuer, - smx_simcall_t simcall) -{ - XBT_IN("(%p, %p, %f, %p,%p)", cond, mutex, timeout, issuer, simcall); - smx_activity_t synchro = nullptr; - - XBT_DEBUG("Wait condition %p", cond); - - /* If there is a mutex unlock it */ - /* FIXME: what happens if the issuer is not the owner of the mutex? */ - if (mutex != nullptr) { - cond->mutex = mutex; - mutex->unlock(issuer); - } - - synchro = SIMIX_synchro_wait(issuer->host, timeout); - synchro->simcalls.push_front(simcall); - issuer->waiting_synchro = synchro; - cond->sleeping.push_back(*simcall->issuer); + simcall_cond_wait_timeout__set__result(simcall, 0); // default result, will be set to 1 on timeout + cond->wait(mutex, timeout, issuer, simcall); XBT_OUT(); } @@ -70,7 +41,7 @@ ConditionVariableImpl::ConditionVariableImpl() : cond_(this) {} ConditionVariableImpl::~ConditionVariableImpl() = default; /** - * \brief Signalizes a condition. + * @brief Signalizes a condition. * * Signalizes a condition and wakes up a sleeping process. * If there are no process sleeping, no action is done. @@ -81,9 +52,9 @@ void ConditionVariableImpl::signal() /* If there are processes waiting for the condition choose one and try to make it acquire the mutex */ - if (not sleeping.empty()) { - auto& proc = sleeping.front(); - sleeping.pop_front(); + if (not sleeping_.empty()) { + auto& proc = sleeping_.front(); + sleeping_.pop_front(); /* Destroy waiter's synchronization */ proc.waiting_synchro = nullptr; @@ -103,7 +74,7 @@ void ConditionVariableImpl::signal() } /** - * \brief Broadcasts a condition. + * @brief Broadcasts a condition. * * Signal ALL processes waiting on a condition. * If there are no process waiting, no action is done. @@ -113,10 +84,31 @@ void ConditionVariableImpl::broadcast() XBT_DEBUG("Broadcast condition %p", this); /* Signal the condition until nobody is waiting on it */ - while (not sleeping.empty()) + while (not sleeping_.empty()) signal(); } +void ConditionVariableImpl::wait(smx_mutex_t mutex, double timeout, smx_actor_t issuer, smx_simcall_t simcall) +{ + XBT_IN("(%p, %p, %f, %p,%p)", this, mutex, timeout, issuer, simcall); + RawImplPtr synchro = nullptr; + + XBT_DEBUG("Wait condition %p", this); + + /* If there is a mutex unlock it */ + /* FIXME: what happens if the issuer is not the owner of the mutex? */ + if (mutex != nullptr) { + mutex_ = mutex; + mutex->unlock(issuer); + } + + synchro = RawImplPtr(new RawImpl())->start(issuer->get_host(), timeout); + synchro->simcalls_.push_front(simcall); + issuer->waiting_synchro = synchro; + sleeping_.push_back(*simcall->issuer); + XBT_OUT(); +} + // boost::intrusive_ptr support: void intrusive_ptr_add_ref(simgrid::kernel::activity::ConditionVariableImpl* cond) { @@ -127,10 +119,10 @@ void intrusive_ptr_release(simgrid::kernel::activity::ConditionVariableImpl* con { if (cond->refcount_.fetch_sub(1, std::memory_order_release) == 1) { std::atomic_thread_fence(std::memory_order_acquire); - xbt_assert(cond->sleeping.empty(), "Cannot destroy conditional since someone is still using it"); + xbt_assert(cond->sleeping_.empty(), "Cannot destroy conditional since someone is still using it"); delete cond; } } } // namespace activity } // namespace kernel -} +} // namespace simgrid