1 // <thread> -*- C++ -*-
3 // Copyright (C) 2008-2016 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 #if __cplusplus < 201103L
35 # include <bits/c++0x_warning.h>
42 #include <bits/functexcept.h>
43 #include <bits/functional_hash.h>
44 #include <bits/gthr.h>
46 #if defined(_GLIBCXX_HAS_GTHREADS) && defined(_GLIBCXX_USE_C99_STDINT_TR1)
48 namespace std _GLIBCXX_VISIBILITY(default)
50 _GLIBCXX_BEGIN_NAMESPACE_VERSION
53 * @defgroup threads Threads
54 * @ingroup concurrency
56 * Classes for thread support.
64 // Abstract base class for types that wrap arbitrary functors to be
65 // invoked in the new thread of execution.
69 virtual void _M_run() = 0;
71 using _State_ptr = unique_ptr<_State>;
73 typedef __gthread_t native_handle_type;
78 native_handle_type _M_thread;
81 id() noexcept : _M_thread() { }
84 id(native_handle_type __id) : _M_thread(__id) { }
88 friend class hash<thread::id>;
91 operator==(thread::id __x, thread::id __y) noexcept
93 // pthread_equal is undefined if either thread ID is not valid, so we
94 // can't safely use __gthread_equal on default-constructed values (nor
95 // the non-zero value returned by this_thread::get_id() for
96 // single-threaded programs using GNU libc). Assume EqualityComparable.
97 return __x._M_thread == __y._M_thread;
101 operator<(thread::id __x, thread::id __y) noexcept
103 // Pthreads doesn't define any way to do this, so we just have to
104 // assume native_handle_type is LessThanComparable.
105 return __x._M_thread < __y._M_thread;
108 template<class _CharT, class _Traits>
109 friend basic_ostream<_CharT, _Traits>&
110 operator<<(basic_ostream<_CharT, _Traits>& __out, thread::id __id);
117 thread() noexcept = default;
118 // _GLIBCXX_RESOLVE_LIB_DEFECTS
119 // 2097. packaged_task constructors should be constrained
120 thread(thread&) = delete;
121 thread(const thread&) = delete;
123 thread(thread&& __t) noexcept
126 template<typename _Callable, typename... _Args>
128 thread(_Callable&& __f, _Args&&... __args)
130 #ifdef GTHR_ACTIVE_PROXY
131 // Create a reference to pthread_create, not just the gthr weak symbol.
132 auto __depend = reinterpret_cast<void(*)()>(&pthread_create);
134 auto __depend = nullptr;
136 _M_start_thread(_S_make_state(
137 std::__bind_simple(std::forward<_Callable>(__f),
138 std::forward<_Args>(__args)...)),
148 thread& operator=(const thread&) = delete;
150 thread& operator=(thread&& __t) noexcept
159 swap(thread& __t) noexcept
160 { std::swap(_M_id, __t._M_id); }
163 joinable() const noexcept
164 { return !(_M_id == id()); }
173 get_id() const noexcept
176 /** @pre thread is joinable
180 { return _M_id._M_thread; }
182 // Returns a value that hints at the number of hardware thread contexts.
184 hardware_concurrency() noexcept;
187 template<typename _Callable>
188 struct _State_impl : public _State
192 _State_impl(_Callable&& __f) : _M_func(std::forward<_Callable>(__f))
196 _M_run() { _M_func(); }
200 _M_start_thread(_State_ptr, void (*)());
202 template<typename _Callable>
204 _S_make_state(_Callable&& __f)
206 using _Impl = _State_impl<_Callable>;
207 return _State_ptr{new _Impl{std::forward<_Callable>(__f)}};
209 #if _GLIBCXX_THREAD_ABI_COMPAT
212 typedef shared_ptr<_Impl_base> __shared_base_type;
215 __shared_base_type _M_this_ptr;
216 virtual ~_Impl_base() = default;
217 virtual void _M_run() = 0;
222 _M_start_thread(__shared_base_type, void (*)());
225 _M_start_thread(__shared_base_type);
230 swap(thread& __x, thread& __y) noexcept
234 operator!=(thread::id __x, thread::id __y) noexcept
235 { return !(__x == __y); }
238 operator<=(thread::id __x, thread::id __y) noexcept
239 { return !(__y < __x); }
242 operator>(thread::id __x, thread::id __y) noexcept
243 { return __y < __x; }
246 operator>=(thread::id __x, thread::id __y) noexcept
247 { return !(__x < __y); }
250 /// std::hash specialization for thread::id.
252 struct hash<thread::id>
253 : public __hash_base<size_t, thread::id>
256 operator()(const thread::id& __id) const noexcept
257 { return std::_Hash_impl::hash(__id._M_thread); }
260 template<class _CharT, class _Traits>
261 inline basic_ostream<_CharT, _Traits>&
262 operator<<(basic_ostream<_CharT, _Traits>& __out, thread::id __id)
264 if (__id == thread::id())
265 return __out << "thread::id of a non-executing thread";
267 return __out << __id._M_thread;
270 _GLIBCXX_END_NAMESPACE_VERSION
272 /** @namespace std::this_thread
273 * @brief ISO C++ 2011 entities sub-namespace for thread.
274 * 30.3.2 Namespace this_thread.
276 namespace this_thread
278 _GLIBCXX_BEGIN_NAMESPACE_VERSION
285 // For the GNU C library pthread_self() is usable without linking to
286 // libpthread.so but returns 0, so we cannot use it in single-threaded
287 // programs, because this_thread::get_id() != thread::id{} must be true.
288 // We know that pthread_t is an integral type in the GNU C library.
289 if (!__gthread_active_p())
290 return thread::id(1);
292 return thread::id(__gthread_self());
299 #ifdef _GLIBCXX_USE_SCHED_YIELD
305 __sleep_for(chrono::seconds, chrono::nanoseconds);
308 template<typename _Rep, typename _Period>
310 sleep_for(const chrono::duration<_Rep, _Period>& __rtime)
312 if (__rtime <= __rtime.zero())
314 auto __s = chrono::duration_cast<chrono::seconds>(__rtime);
315 auto __ns = chrono::duration_cast<chrono::nanoseconds>(__rtime - __s);
316 #ifdef _GLIBCXX_USE_NANOSLEEP
317 __gthread_time_t __ts =
319 static_cast<std::time_t>(__s.count()),
320 static_cast<long>(__ns.count())
322 while (::nanosleep(&__ts, &__ts) == -1 && errno == EINTR)
325 __sleep_for(__s, __ns);
330 template<typename _Clock, typename _Duration>
332 sleep_until(const chrono::time_point<_Clock, _Duration>& __atime)
334 auto __now = _Clock::now();
335 if (_Clock::is_steady)
338 sleep_for(__atime - __now);
341 while (__now < __atime)
343 sleep_for(__atime - __now);
344 __now = _Clock::now();
348 _GLIBCXX_END_NAMESPACE_VERSION
355 #endif // _GLIBCXX_HAS_GTHREADS && _GLIBCXX_USE_C99_STDINT_TR1
359 #endif // _GLIBCXX_THREAD