]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/fiber/src/numa/aix/pin_thread.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / fiber / src / numa / aix / 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 <sys/errno.h>
11 #include <sys/processor.h>
12 #include <sys/thread.h>
13 }
14
15 #include <system_error>
16
17 #ifdef BOOST_HAS_ABI_HEADERS
18 # include BOOST_ABI_PREFIX
19 #endif
20
21 namespace boost {
22 namespace fibers {
23 namespace numa {
24
25 BOOST_FIBERS_DECL
26 void pin_thread( std::uint32_t cpuid) {
27 if ( BOOST_UNLIKELY( -1 == ::bindprocessor( BINDTHREAD, ::thread_self(), static_cast< cpu_t >( cpuid) ) ) ) {
28 throw std::system_error(
29 std::error_code( errno, std::system_category() ),
30 "bindprocessor() failed");
31 }
32 }
33
34 }}}
35
36 #ifdef BOOST_HAS_ABI_HEADERS
37 # include BOOST_ABI_SUFFIX
38 #endif