1// <condition_variable> -*- C++ -*-
3// Copyright (C) 2008-2025 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
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
54#if defined(_GLIBCXX_HAS_GTHREADS)
56namespace 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 using __dur = typename steady_clock::duration;
167 return wait_until(__lock,
168 steady_clock::now() +
169 chrono::__detail::ceil<__dur>(__rtime));
172 template<typename _Rep, typename _Period, typename _Predicate>
174 wait_for(unique_lock<mutex>& __lock,
175 const chrono::duration<_Rep, _Period>& __rtime,
178 using __dur = typename steady_clock::duration;
179 return wait_until(__lock,
180 steady_clock::now() +
181 chrono::__detail::ceil<__dur>(__rtime),
187 { return _M_cond.native_handle(); }
190#ifdef _GLIBCXX_USE_PTHREAD_COND_CLOCKWAIT
191 template<typename _Dur>
193 __wait_until_impl(unique_lock<mutex>& __lock,
194 const chrono::time_point<steady_clock, _Dur>& __atime)
196 auto __s = chrono::time_point_cast<chrono::seconds>(__atime);
197 auto __ns = chrono::duration_cast<chrono::nanoseconds>(__atime - __s);
199 __gthread_time_t __ts =
201 static_cast<std::time_t>(__s.time_since_epoch().count()),
202 static_cast<long>(__ns.count())
205 _M_cond.wait_until(*__lock.mutex(), CLOCK_MONOTONIC, __ts);
207 return (steady_clock::now() < __atime
208 ? cv_status::no_timeout : cv_status::timeout);
212 template<typename _Dur>
214 __wait_until_impl(unique_lock<mutex>& __lock,
215 const chrono::time_point<system_clock, _Dur>& __atime)
217 auto __s = chrono::time_point_cast<chrono::seconds>(__atime);
218 auto __ns = chrono::duration_cast<chrono::nanoseconds>(__atime - __s);
220 __gthread_time_t __ts =
222 static_cast<std::time_t>(__s.time_since_epoch().count()),
223 static_cast<long>(__ns.count())
226 _M_cond.wait_until(*__lock.mutex(), __ts);
228 return (system_clock::now() < __atime
229 ? cv_status::no_timeout : cv_status::timeout);
234 notify_all_at_thread_exit(condition_variable&, unique_lock<mutex>);
236 struct __at_thread_exit_elt
238 __at_thread_exit_elt* _M_next;
239 void (*_M_cb)(void*);
242_GLIBCXX_BEGIN_INLINE_ABI_NAMESPACE(_V2)
244 /// condition_variable_any
245 // Like above, but mutex is not required to have try_lock.
246 class condition_variable_any
248#ifdef _GLIBCXX_USE_PTHREAD_COND_CLOCKWAIT
249 using __clock_t = chrono::steady_clock;
251 using __clock_t = chrono::system_clock;
253 condition_variable _M_cond;
254 shared_ptr<mutex> _M_mutex;
256 // scoped unlock - unlocks in ctor, re-locks in dtor
257 template<typename _Lock>
260 explicit _Unlock(_Lock& __lk) : _M_lock(__lk) { __lk.unlock(); }
262#pragma GCC diagnostic push
263#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
264 ~_Unlock() noexcept(false)
266 if (uncaught_exception())
270 __catch(const __cxxabiv1::__forced_unwind&)
271 { __throw_exception_again; }
278#pragma GCC diagnostic pop
280 _Unlock(const _Unlock&) = delete;
281 _Unlock& operator=(const _Unlock&) = delete;
287 condition_variable_any() : _M_mutex(std::make_shared<mutex>()) { }
288 ~condition_variable_any() = default;
290 condition_variable_any(const condition_variable_any&) = delete;
291 condition_variable_any& operator=(const condition_variable_any&) = delete;
294 notify_one() noexcept
296 lock_guard<mutex> __lock(*_M_mutex);
297 _M_cond.notify_one();
301 notify_all() noexcept
303 lock_guard<mutex> __lock(*_M_mutex);
304 _M_cond.notify_all();
307 template<typename _Lock>
311 shared_ptr<mutex> __mutex = _M_mutex;
312 unique_lock<mutex> __my_lock(*__mutex);
313 _Unlock<_Lock> __unlock(__lock);
314 // *__mutex must be unlocked before re-locking __lock so move
315 // ownership of *__mutex lock to an object with shorter lifetime.
316 unique_lock<mutex> __my_lock2(std::move(__my_lock));
317 _M_cond.wait(__my_lock2);
321 template<typename _Lock, typename _Predicate>
323 wait(_Lock& __lock, _Predicate __p)
329 template<typename _Lock, typename _Clock, typename _Duration>
331 wait_until(_Lock& __lock,
332 const chrono::time_point<_Clock, _Duration>& __atime)
334 shared_ptr<mutex> __mutex = _M_mutex;
335 unique_lock<mutex> __my_lock(*__mutex);
336 _Unlock<_Lock> __unlock(__lock);
337 // *__mutex must be unlocked before re-locking __lock so move
338 // ownership of *__mutex lock to an object with shorter lifetime.
339 unique_lock<mutex> __my_lock2(std::move(__my_lock));
340 return _M_cond.wait_until(__my_lock2, __atime);
343 template<typename _Lock, typename _Clock,
344 typename _Duration, typename _Predicate>
346 wait_until(_Lock& __lock,
347 const chrono::time_point<_Clock, _Duration>& __atime,
351 if (wait_until(__lock, __atime) == cv_status::timeout)
356 template<typename _Lock, typename _Rep, typename _Period>
358 wait_for(_Lock& __lock, const chrono::duration<_Rep, _Period>& __rtime)
359 { return wait_until(__lock, __clock_t::now() + __rtime); }
361 template<typename _Lock, typename _Rep,
362 typename _Period, typename _Predicate>
364 wait_for(_Lock& __lock,
365 const chrono::duration<_Rep, _Period>& __rtime, _Predicate __p)
366 { return wait_until(__lock, __clock_t::now() + __rtime, std::move(__p)); }
368#ifdef __glibcxx_jthread
369 template <class _Lock, class _Predicate>
370 bool wait(_Lock& __lock,
374 if (__stoken.stop_requested())
379 std::stop_callback __cb(__stoken, [this] { notify_all(); });
380 shared_ptr<mutex> __mutex = _M_mutex;
383 unique_lock<mutex> __my_lock(*__mutex);
384 if (__stoken.stop_requested())
388 // *__mutex must be unlocked before re-locking __lock so move
389 // ownership of *__mutex lock to an object with shorter lifetime.
390 _Unlock<_Lock> __unlock(__lock);
391 unique_lock<mutex> __my_lock2(std::move(__my_lock));
392 _M_cond.wait(__my_lock2);
397 template <class _Lock, class _Clock, class _Duration, class _Predicate>
398 bool wait_until(_Lock& __lock,
400 const chrono::time_point<_Clock, _Duration>& __abs_time,
403 if (__stoken.stop_requested())
408 std::stop_callback __cb(__stoken, [this] { notify_all(); });
409 shared_ptr<mutex> __mutex = _M_mutex;
414 unique_lock<mutex> __my_lock(*__mutex);
415 if (__stoken.stop_requested())
419 _Unlock<_Lock> __u(__lock);
420 unique_lock<mutex> __my_lock2(std::move(__my_lock));
421 const auto __status = _M_cond.wait_until(__my_lock2, __abs_time);
422 __stop = (__status == std::cv_status::timeout) || __stoken.stop_requested();
432 template <class _Lock, class _Rep, class _Period, class _Predicate>
433 bool wait_for(_Lock& __lock,
435 const chrono::duration<_Rep, _Period>& __rel_time,
438 auto __abst = std::chrono::steady_clock::now() + __rel_time;
439 return wait_until(__lock,
447_GLIBCXX_END_INLINE_ABI_NAMESPACE(_V2)
449 /// @} group condition_variables
450_GLIBCXX_END_NAMESPACE_VERSION
453#endif // _GLIBCXX_HAS_GTHREADS
455#endif // _GLIBCXX_CONDITION_VARIABLE