]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/asio/detail/scheduler_thread_info.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / asio / detail / scheduler_thread_info.hpp
CommitLineData
7c673cae 1//
b32b8144
FG
2// detail/scheduler_thread_info.hpp
3// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
7c673cae 4//
92f5a8d4 5// Copyright (c) 2003-2019 Christopher M. Kohlhoff (chris at kohlhoff dot com)
7c673cae
FG
6//
7// Distributed under the Boost Software License, Version 1.0. (See accompanying
8// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9//
10
b32b8144
FG
11#ifndef BOOST_ASIO_DETAIL_SCHEDULER_THREAD_INFO_HPP
12#define BOOST_ASIO_DETAIL_SCHEDULER_THREAD_INFO_HPP
7c673cae
FG
13
14#if defined(_MSC_VER) && (_MSC_VER >= 1200)
15# pragma once
16#endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
17
18#include <boost/asio/detail/op_queue.hpp>
19#include <boost/asio/detail/thread_info_base.hpp>
20
21#include <boost/asio/detail/push_options.hpp>
22
23namespace boost {
24namespace asio {
25namespace detail {
26
b32b8144
FG
27class scheduler;
28class scheduler_operation;
7c673cae 29
b32b8144 30struct scheduler_thread_info : public thread_info_base
7c673cae 31{
b32b8144 32 op_queue<scheduler_operation> private_op_queue;
7c673cae
FG
33 long private_outstanding_work;
34};
35
36} // namespace detail
37} // namespace asio
38} // namespace boost
39
40#include <boost/asio/detail/pop_options.hpp>
41
b32b8144 42#endif // BOOST_ASIO_DETAIL_SCHEDULER_THREAD_INFO_HPP