3// Copyright (C) 2008-2023 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/thread
26 * This is a Standard C++ Library header.
29#ifndef _GLIBCXX_THREAD
30#define _GLIBCXX_THREAD 1
32#pragma GCC system_header
34#include <bits/requires_hosted.h> // concurrency
36#if __cplusplus < 201103L
37# include <bits/c++0x_warning.h>
40#if __cplusplus > 201703L
41# include <compare> // std::strong_ordering
42# include <stop_token> // std::stop_source, std::stop_token, std::nostopstate
45#include <bits/std_thread.h> // std::thread, get_id, yield
46#include <bits/this_thread_sleep.h> // std::this_thread::sleep_for, sleep_until
48namespace std _GLIBCXX_VISIBILITY(default)
50_GLIBCXX_BEGIN_NAMESPACE_VERSION
53 * @defgroup threads Threads
54 * @ingroup concurrency
57 * Classes for thread support.
61 // std::thread is defined in <bits/std_thread.h>
63 /// @relates std::thread::id @{
65#if __cpp_lib_three_way_comparison
66 inline strong_ordering
67 operator<=>(thread::id __x, thread::id __y) noexcept
68 { return __x._M_thread <=> __y._M_thread; }
71 operator!=(thread::id __x, thread::id __y) noexcept
72 { return !(__x == __y); }
75 operator<(thread::id __x, thread::id __y) noexcept
77 // Pthreads doesn't define any way to do this, so we just have to
78 // assume native_handle_type is LessThanComparable.
79 return __x._M_thread < __y._M_thread;
83 operator<=(thread::id __x, thread::id __y) noexcept
84 { return !(__y < __x); }
87 operator>(thread::id __x, thread::id __y) noexcept
91 operator>=(thread::id __x, thread::id __y) noexcept
92 { return !(__x < __y); }
93#endif // __cpp_lib_three_way_comparison
95 template<class _CharT, class _Traits>
96 inline basic_ostream<_CharT, _Traits>&
97 operator<<(basic_ostream<_CharT, _Traits>& __out, thread::id __id)
99 if (__id == thread::id())
100 return __out << "thread::id of a non-executing thread";
102 return __out << __id._M_thread;
106#ifdef __cpp_lib_jthread
108 /// @cond undocumented
109#ifndef __STRICT_ANSI__
110 template<typename _Callable, typename... _Args>
111 constexpr bool __pmf_expects_stop_token = false;
113 template<typename _Callable, typename _Obj, typename... _Args>
114 constexpr bool __pmf_expects_stop_token<_Callable, _Obj, _Args...>
115 = __and_<is_member_function_pointer<remove_reference_t<_Callable>>,
116 is_invocable<_Callable, _Obj, stop_token, _Args...>>::value;
120 /** A thread with cancellation and automatic joining.
122 * Unlike `std::thread`, destroying a joinable `std::jthread` will not
123 * terminate the process. Instead, it will try to request its thread to
124 * stop, then will join it.
126 * A `std::jthread` has a `std::stop_source` member which will be passed
127 * as the first argument to the callable that runs in the new thread
128 * (as long as the callable will accept that argument). That can then
129 * be used to send a stop request that the new thread can test for.
137 using id = thread::id;
138 using native_handle_type = thread::native_handle_type;
141 : _M_stop_source{nostopstate}
144 template<typename _Callable, typename... _Args,
145 typename = enable_if_t<!is_same_v<remove_cvref_t<_Callable>,
148 jthread(_Callable&& __f, _Args&&... __args)
149 : _M_thread{_S_create(_M_stop_source, std::forward<_Callable>(__f),
150 std::forward<_Args>(__args)...)}
153 jthread(const jthread&) = delete;
154 jthread(jthread&&) noexcept = default;
166 operator=(const jthread&) = delete;
169 operator=(jthread&& __other) noexcept
171 std::jthread(std::move(__other)).swap(*this);
176 swap(jthread& __other) noexcept
178 std::swap(_M_stop_source, __other._M_stop_source);
179 std::swap(_M_thread, __other._M_thread);
183 joinable() const noexcept
185 return _M_thread.joinable();
201 get_id() const noexcept
203 return _M_thread.get_id();
206 [[nodiscard]] native_handle_type
209 return _M_thread.native_handle();
212 [[nodiscard]] static unsigned
213 hardware_concurrency() noexcept
215 return thread::hardware_concurrency();
218 [[nodiscard]] stop_source
219 get_stop_source() noexcept
221 return _M_stop_source;
224 [[nodiscard]] stop_token
225 get_stop_token() const noexcept
227 return _M_stop_source.get_token();
230 bool request_stop() noexcept
232 return _M_stop_source.request_stop();
235 friend void swap(jthread& __lhs, jthread& __rhs) noexcept
241 template<typename _Callable, typename... _Args>
243 _S_create(stop_source& __ssrc, _Callable&& __f, _Args&&... __args)
245#ifndef __STRICT_ANSI__
246 if constexpr (__pmf_expects_stop_token<_Callable, _Args...>)
247 return _S_create_pmf(__ssrc, __f, std::forward<_Args>(__args)...);
250 if constexpr(is_invocable_v<decay_t<_Callable>, stop_token,
252 return thread{std::forward<_Callable>(__f), __ssrc.get_token(),
253 std::forward<_Args>(__args)...};
256 static_assert(is_invocable_v<decay_t<_Callable>,
258 "std::jthread arguments must be invocable after"
259 " conversion to rvalues");
260 return thread{std::forward<_Callable>(__f),
261 std::forward<_Args>(__args)...};
265#ifndef __STRICT_ANSI__
266 template<typename _Callable, typename _Obj, typename... _Args>
268 _S_create_pmf(stop_source& __ssrc, _Callable __f, _Obj&& __obj,
271 return thread{__f, std::forward<_Obj>(__obj), __ssrc.get_token(),
272 std::forward<_Args>(__args)...};
276 stop_source _M_stop_source;
279#endif // __cpp_lib_jthread
283_GLIBCXX_END_NAMESPACE_VERSION
286#endif // _GLIBCXX_THREAD