X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f3b7e5f4b4d7c87ee3e8827313ec966ea8fc8387..ea74f5d95928a521a588737e81f1de94eef25d19:/include/simgrid/s4u/ConditionVariable.hpp diff --git a/include/simgrid/s4u/ConditionVariable.hpp b/include/simgrid/s4u/ConditionVariable.hpp index 7b0cab04d4..82d16d8bb4 100644 --- a/include/simgrid/s4u/ConditionVariable.hpp +++ b/include/simgrid/s4u/ConditionVariable.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2006-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2006-2022. 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. */ @@ -9,6 +9,7 @@ #include #include +#include #include #include @@ -17,7 +18,7 @@ namespace simgrid { namespace s4u { /** - * @rst + * @beginrst * SimGrid's condition variables are meant to be drop-in replacements of ``std::condition_variable``. * Please refer to the `documentation of standard C++ `_ * for more information on condition variables. A SimGrid example is available in Section :ref:`s4u_ex_IPC`. @@ -25,13 +26,16 @@ namespace s4u { */ class XBT_PUBLIC ConditionVariable { private: +#ifndef DOXYGEN friend kernel::activity::ConditionVariableImpl; - kernel::activity::ConditionVariableImpl* const cond_; + friend void kernel::activity::intrusive_ptr_release(kernel::activity::ConditionVariableImpl* cond); +#endif -public: -#ifndef DOXYGEN - explicit ConditionVariable(kernel::activity::ConditionVariableImpl* cond) : cond_(cond) {} + kernel::activity::ConditionVariableImpl* const pimpl_; + explicit ConditionVariable(kernel::activity::ConditionVariableImpl* cond) : pimpl_(cond) {} + ~ConditionVariable() = default; +#ifndef DOXYGEN ConditionVariable(ConditionVariable const&) = delete; ConditionVariable& operator=(ConditionVariable const&) = delete; @@ -39,9 +43,10 @@ public: friend XBT_PUBLIC void intrusive_ptr_release(const ConditionVariable* cond); #endif +public: /** Create a new condition variable and return a smart pointer * - * @rst + * @beginrst * You should only manipulate :cpp:type:`simgrid::s4u::ConditionVariablePtr`, as created by this function (see also :ref:`s4u_raii`). * @endrst */ @@ -72,7 +77,7 @@ public: /// As long as the predicate is false, wait for the given amount of seconds (specified as a plain double) template bool wait_for(const std::unique_lock& lock, double duration, P pred) { - return this->wait_until(lock, SIMIX_get_clock() + duration, std::move(pred)); + return this->wait_until(lock, Engine::get_clock() + duration, std::move(pred)); } // Wait function taking a C++ style time: