]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/fiber/src/numa/linux/pin_thread.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / fiber / src / numa / linux / pin_thread.cpp
1
2 // Copyright Oliver Kowalke 2017.
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6
7 #include "boost/fiber/numa/pin_thread.hpp"
8
9 extern "C" {
10 #include <pthread.h>
11 #include <sched.h>
12 }
13
14 #include <system_error>
15
16 #ifdef BOOST_HAS_ABI_HEADERS
17 # include BOOST_ABI_PREFIX
18 #endif
19
20 namespace boost {
21 namespace fibers {
22 namespace numa {
23
24 BOOST_FIBERS_DECL
25 void pin_thread( std::uint32_t cpuid) {
26 cpu_set_t set;
27 CPU_ZERO( & set);
28 CPU_SET( cpuid, & set);
29 int err = 0;
30 if ( BOOST_UNLIKELY( 0 != ( err = ::pthread_setaffinity_np( ::pthread_self(), sizeof( set), & set) ) ) ) {
31 throw std::system_error(
32 std::error_code( err, std::system_category() ),
33 "pthread_setaffinity_np() failed");
34 }
35 }
36
37 }}}
38
39 #ifdef BOOST_HAS_ABI_HEADERS
40 # include BOOST_ABI_SUFFIX
41 #endif