1 // <condition_variable> -*- C++ -*-
3 // Copyright (C) 2008-2026 Free Software Foundation, Inc.
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
25 /** @file include/condition_variable
26 * This is a Standard C++ Library header.
29 #ifndef _GLIBCXX_CONDITION_VARIABLE
30 #define _GLIBCXX_CONDITION_VARIABLE 1
32 #ifdef _GLIBCXX_SYSHDR
33 #pragma GCC system_header
36 #include <bits/requires_hosted.h> // threading primitive
38 #if __cplusplus < 201103L
39 # include <bits/c++0x_warning.h>
42 #include <bits/chrono.h>
43 #include <bits/error_constants.h>
44 #include <bits/std_mutex.h>
45 #include <bits/unique_lock.h>
46 #include <bits/alloc_traits.h>
47 #include <bits/shared_ptr.h>
48 #include <bits/cxxabi_forced.h>
50 #if __cplusplus > 201703L
51 # include <stop_token>
54 #if defined(_GLIBCXX_HAS_GTHREADS)
56 namespace std _GLIBCXX_VISIBILITY(default)
58 _GLIBCXX_BEGIN_NAMESPACE_VERSION
61 * @defgroup condition_variables Condition Variables
62 * @ingroup concurrency
64 * Classes for condition_variable support.
69 enum class cv_status { no_timeout, timeout };
71 /// condition_variable
72 class condition_variable
74 using steady_clock = chrono::steady_clock;
75 using system_clock = chrono::system_clock;
76 #ifdef _GLIBCXX_USE_PTHREAD_COND_CLOCKWAIT
77 using __clock_t = steady_clock;
79 using __clock_t = system_clock;
85 typedef __gthread_cond_t* native_handle_type;
87 condition_variable() noexcept;
88 ~condition_variable() noexcept;
90 condition_variable(const condition_variable&) = delete;
91 condition_variable& operator=(const condition_variable&) = delete;
94 notify_one() noexcept;
97 notify_all() noexcept;
100 wait(unique_lock<mutex>& __lock);
102 template<typename _Predicate>
104 wait(unique_lock<mutex>& __lock, _Predicate __p)
110 #ifdef _GLIBCXX_USE_PTHREAD_COND_CLOCKWAIT
111 template<typename _Duration>
113 wait_until(unique_lock<mutex>& __lock,
114 const chrono::time_point<steady_clock, _Duration>& __atime)
115 { return __wait_until_impl(__lock, __atime); }
118 template<typename _Duration>
120 wait_until(unique_lock<mutex>& __lock,
121 const chrono::time_point<system_clock, _Duration>& __atime)
122 { return __wait_until_impl(__lock, __atime); }
124 template<typename _Clock, typename _Duration>
126 wait_until(unique_lock<mutex>& __lock,
127 const chrono::time_point<_Clock, _Duration>& __atime)
129 #if __cplusplus > 201703L
130 static_assert(chrono::is_clock_v<_Clock>);
132 using __s_dur = typename __clock_t::duration;
133 const typename _Clock::time_point __c_entry = _Clock::now();
134 const __clock_t::time_point __s_entry = __clock_t::now();
135 const auto __delta = __atime - __c_entry;
136 const auto __s_atime = __s_entry +
137 chrono::__detail::ceil<__s_dur>(__delta);
139 if (__wait_until_impl(__lock, __s_atime) == cv_status::no_timeout)
140 return cv_status::no_timeout;
141 // We got a timeout when measured against __clock_t but
142 // we need to check against the caller-supplied clock
143 // to tell whether we should return a timeout.
144 if (_Clock::now() < __atime)
145 return cv_status::no_timeout;
146 return cv_status::timeout;
149 template<typename _Clock, typename _Duration, typename _Predicate>
151 wait_until(unique_lock<mutex>& __lock,
152 const chrono::time_point<_Clock, _Duration>& __atime,
156 if (wait_until(__lock, __atime) == cv_status::timeout)
161 template<typename _Rep, typename _Period>
163 wait_for(unique_lock<mutex>& __lock,
164 const chrono::duration<_Rep, _Period>& __rtime)
166 // _GLIBCXX_RESOLVE_LIB_DEFECTS
167 // 3504. condition_variable::wait_for is overspecified
168 using __dur = typename steady_clock::duration;
169 return wait_until(__lock,
170 steady_clock::now() +
171 chrono::__detail::ceil<__dur>(__rtime));
174 template<typename _Rep, typename _Period, typename _Predicate>
176 wait_for(unique_lock<mutex>& __lock,
177 const chrono::duration<_Rep, _Period>& __rtime,
180 using __dur = typename steady_clock::duration;
181 return wait_until(__lock,
182 steady_clock::now() +
183 chrono::__detail::ceil<__dur>(__rtime),
189 { return _M_cond.native_handle(); }
192 #ifdef _GLIBCXX_USE_PTHREAD_COND_CLOCKWAIT
193 template<typename _Dur>
195 __wait_until_impl(unique_lock<mutex>& __lock,
196 const chrono::time_point<steady_clock, _Dur>& __atime)
198 __gthread_time_t __ts = chrono::__to_timeout_gthread_time_t(__atime);
199 _M_cond.wait_until(*__lock.mutex(), CLOCK_MONOTONIC, __ts);
201 return (steady_clock::now() < __atime
202 ? cv_status::no_timeout : cv_status::timeout);
206 template<typename _Dur>
208 __wait_until_impl(unique_lock<mutex>& __lock,
209 const chrono::time_point<system_clock, _Dur>& __atime)
211 __gthread_time_t __ts = chrono::__to_timeout_gthread_time_t(__atime);
212 _M_cond.wait_until(*__lock.mutex(), __ts);
214 return (system_clock::now() < __atime
215 ? cv_status::no_timeout : cv_status::timeout);
220 notify_all_at_thread_exit(condition_variable&, unique_lock<mutex>);
222 struct __at_thread_exit_elt
224 __at_thread_exit_elt* _M_next;
225 void (*_M_cb)(void*);
228 _GLIBCXX_BEGIN_INLINE_ABI_NAMESPACE(_V2)
230 /// condition_variable_any
231 // Like above, but mutex is not required to have try_lock.
232 class condition_variable_any
234 #ifdef _GLIBCXX_USE_PTHREAD_COND_CLOCKWAIT
235 using __clock_t = chrono::steady_clock;
237 using __clock_t = chrono::system_clock;
239 condition_variable _M_cond;
240 shared_ptr<mutex> _M_mutex;
242 // scoped unlock - unlocks in ctor, re-locks in dtor
243 template<typename _Lock>
246 explicit _Unlock(_Lock& __lk) : _M_lock(__lk) { __lk.unlock(); }
248 #pragma GCC diagnostic push
249 #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
250 ~_Unlock() noexcept(false)
252 if (uncaught_exception())
256 __catch(const __cxxabiv1::__forced_unwind&)
257 { __throw_exception_again; }
264 #pragma GCC diagnostic pop
266 _Unlock(const _Unlock&) = delete;
267 _Unlock& operator=(const _Unlock&) = delete;
273 condition_variable_any() : _M_mutex(std::make_shared<mutex>()) { }
274 ~condition_variable_any() = default;
276 condition_variable_any(const condition_variable_any&) = delete;
277 condition_variable_any& operator=(const condition_variable_any&) = delete;
280 notify_one() noexcept
282 lock_guard<mutex> __lock(*_M_mutex);
283 _M_cond.notify_one();
287 notify_all() noexcept
289 lock_guard<mutex> __lock(*_M_mutex);
290 _M_cond.notify_all();
293 template<typename _Lock>
297 shared_ptr<mutex> __mutex = _M_mutex;
298 unique_lock<mutex> __my_lock(*__mutex);
299 _Unlock<_Lock> __unlock(__lock);
300 // *__mutex must be unlocked before re-locking __lock so move
301 // ownership of *__mutex lock to an object with shorter lifetime.
302 unique_lock<mutex> __my_lock2(std::move(__my_lock));
303 _M_cond.wait(__my_lock2);
307 template<typename _Lock, typename _Predicate>
309 wait(_Lock& __lock, _Predicate __p)
315 template<typename _Lock, typename _Clock, typename _Duration>
317 wait_until(_Lock& __lock,
318 const chrono::time_point<_Clock, _Duration>& __atime)
320 shared_ptr<mutex> __mutex = _M_mutex;
321 unique_lock<mutex> __my_lock(*__mutex);
322 _Unlock<_Lock> __unlock(__lock);
323 // *__mutex must be unlocked before re-locking __lock so move
324 // ownership of *__mutex lock to an object with shorter lifetime.
325 unique_lock<mutex> __my_lock2(std::move(__my_lock));
326 return _M_cond.wait_until(__my_lock2, __atime);
329 template<typename _Lock, typename _Clock,
330 typename _Duration, typename _Predicate>
332 wait_until(_Lock& __lock,
333 const chrono::time_point<_Clock, _Duration>& __atime,
337 if (wait_until(__lock, __atime) == cv_status::timeout)
342 template<typename _Lock, typename _Rep, typename _Period>
344 wait_for(_Lock& __lock, const chrono::duration<_Rep, _Period>& __rtime)
345 { return wait_until(__lock, __clock_t::now() + __rtime); }
347 template<typename _Lock, typename _Rep,
348 typename _Period, typename _Predicate>
350 wait_for(_Lock& __lock,
351 const chrono::duration<_Rep, _Period>& __rtime, _Predicate __p)
352 { return wait_until(__lock, __clock_t::now() + __rtime, std::move(__p)); }
354 #ifdef __glibcxx_jthread
355 template <class _Lock, class _Predicate>
356 bool wait(_Lock& __lock,
360 if (__stoken.stop_requested())
365 std::stop_callback __cb(__stoken, [this] { notify_all(); });
366 shared_ptr<mutex> __mutex = _M_mutex;
369 unique_lock<mutex> __my_lock(*__mutex);
370 if (__stoken.stop_requested())
374 // *__mutex must be unlocked before re-locking __lock so move
375 // ownership of *__mutex lock to an object with shorter lifetime.
376 _Unlock<_Lock> __unlock(__lock);
377 unique_lock<mutex> __my_lock2(std::move(__my_lock));
378 _M_cond.wait(__my_lock2);
383 template <class _Lock, class _Clock, class _Duration, class _Predicate>
384 bool wait_until(_Lock& __lock,
386 const chrono::time_point<_Clock, _Duration>& __abs_time,
389 if (__stoken.stop_requested())
394 std::stop_callback __cb(__stoken, [this] { notify_all(); });
395 shared_ptr<mutex> __mutex = _M_mutex;
400 unique_lock<mutex> __my_lock(*__mutex);
401 if (__stoken.stop_requested())
405 _Unlock<_Lock> __u(__lock);
406 unique_lock<mutex> __my_lock2(std::move(__my_lock));
407 const auto __status = _M_cond.wait_until(__my_lock2, __abs_time);
408 __stop = (__status == std::cv_status::timeout) || __stoken.stop_requested();
418 template <class _Lock, class _Rep, class _Period, class _Predicate>
419 bool wait_for(_Lock& __lock,
421 const chrono::duration<_Rep, _Period>& __rel_time,
424 auto __abst = std::chrono::steady_clock::now() + __rel_time;
425 return wait_until(__lock,
433 _GLIBCXX_END_INLINE_ABI_NAMESPACE(_V2)
435 /// @} group condition_variables
436 _GLIBCXX_END_NAMESPACE_VERSION
439 #endif // _GLIBCXX_HAS_GTHREADS
441 #endif // _GLIBCXX_CONDITION_VARIABLE