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/>.
26 #define _GLIBCXX_THREAD_ABI_COMPAT 1
28 #include <system_error>
30 #include <cxxabi_forced.h>
32 #if defined(_GLIBCXX_HAS_GTHREADS) && defined(_GLIBCXX_USE_C99_STDINT_TR1)
34 #if defined(_GLIBCXX_USE_GET_NPROCS)
35 # include <sys/sysinfo.h>
36 # define _GLIBCXX_NPROCS get_nprocs()
37 #elif defined(_GLIBCXX_USE_PTHREADS_NUM_PROCESSORS_NP)
38 # define _GLIBCXX_NPROCS pthread_num_processors_np()
39 #elif defined(_GLIBCXX_USE_SYSCTL_HW_NCPU)
41 # include <sys/sysctl.h>
42 static inline int get_nprocs()
45 size_t size
= sizeof(count
);
46 int mib
[] = { CTL_HW
, HW_NCPU
};
47 if (!sysctl(mib
, 2, &count
, &size
, NULL
, 0))
51 # define _GLIBCXX_NPROCS get_nprocs()
52 #elif defined(_GLIBCXX_USE_SC_NPROCESSORS_ONLN)
54 # define _GLIBCXX_NPROCS sysconf(_SC_NPROCESSORS_ONLN)
55 #elif defined(_GLIBCXX_USE_SC_NPROC_ONLN)
57 # define _GLIBCXX_NPROCS sysconf(_SC_NPROC_ONLN)
59 # define _GLIBCXX_NPROCS 0
62 #ifndef _GLIBCXX_USE_NANOSLEEP
63 # ifdef _GLIBCXX_HAVE_SLEEP
65 # elif defined(_GLIBCXX_HAVE_WIN32_SLEEP)
68 # error "No sleep function known for this target"
72 namespace std
_GLIBCXX_VISIBILITY(default)
77 execute_native_thread_routine(void* __p
)
79 thread::_State_ptr __t
{ static_cast<thread::_State
*>(__p
) };
85 __catch(const __cxxabiv1::__forced_unwind
&)
87 __throw_exception_again
;
97 #if _GLIBCXX_THREAD_ABI_COMPAT
99 execute_native_thread_routine_compat(void* __p
)
101 thread::_Impl_base
* __t
= static_cast<thread::_Impl_base
*>(__p
);
102 thread::__shared_base_type __local
;
103 // Now that a new thread has been created we can transfer ownership of
104 // the thread state to a local object, breaking the reference cycle
105 // created in thread::_M_start_thread.
106 __local
.swap(__t
->_M_this_ptr
);
112 __catch(const __cxxabiv1::__forced_unwind
&)
114 __throw_exception_again
;
126 _GLIBCXX_BEGIN_NAMESPACE_VERSION
128 thread::_State::~_State() = default;
136 __e
= __gthread_join(_M_id
._M_thread
, 0);
139 __throw_system_error(__e
);
150 __e
= __gthread_detach(_M_id
._M_thread
);
153 __throw_system_error(__e
);
159 thread::_M_start_thread(_State_ptr state
, void (*)())
161 const int err
= __gthread_create(&_M_id
._M_thread
,
162 &execute_native_thread_routine
,
165 __throw_system_error(err
);
169 #if _GLIBCXX_THREAD_ABI_COMPAT
171 thread::_M_start_thread(__shared_base_type __b
)
173 if (!__gthread_active_p())
175 throw system_error(make_error_code(errc::operation_not_permitted
),
176 "Enable multithreading to use std::thread");
178 __throw_system_error(int(errc::operation_not_permitted
));
181 _M_start_thread(std::move(__b
), nullptr);
185 thread::_M_start_thread(__shared_base_type __b
, void (*)())
187 auto ptr
= __b
.get();
188 // Create a reference cycle that will be broken in the new thread.
189 ptr
->_M_this_ptr
= std::move(__b
);
190 int __e
= __gthread_create(&_M_id
._M_thread
,
191 &execute_native_thread_routine_compat
, ptr
);
194 ptr
->_M_this_ptr
.reset(); // break reference cycle, destroying *ptr.
195 __throw_system_error(__e
);
201 thread::hardware_concurrency() noexcept
203 int __n
= _GLIBCXX_NPROCS
;
209 _GLIBCXX_END_NAMESPACE_VERSION
211 namespace this_thread
213 _GLIBCXX_BEGIN_NAMESPACE_VERSION
216 __sleep_for(chrono::seconds __s
, chrono::nanoseconds __ns
)
218 #ifdef _GLIBCXX_USE_NANOSLEEP
219 __gthread_time_t __ts
=
221 static_cast<std::time_t>(__s
.count()),
222 static_cast<long>(__ns
.count())
224 while (::nanosleep(&__ts
, &__ts
) == -1 && errno
== EINTR
)
226 #elif defined(_GLIBCXX_HAVE_SLEEP)
227 # ifdef _GLIBCXX_HAVE_USLEEP
228 ::sleep(__s
.count());
229 if (__ns
.count() > 0)
231 long __us
= __ns
.count() / 1000;
237 ::sleep(__s
.count() + (__ns
.count() >= 1000000));
239 #elif defined(_GLIBCXX_HAVE_WIN32_SLEEP)
240 unsigned long ms
= __ns
.count() / 1000000;
241 if (__ns
.count() > 0 && ms
== 0)
243 ::Sleep(chrono::milliseconds(__s
).count() + ms
);
247 _GLIBCXX_END_NAMESPACE_VERSION
252 #endif // _GLIBCXX_HAS_GTHREADS && _GLIBCXX_USE_C99_STDINT_TR1