Clementine
thread_context.hpp
1 //
2 // detail/thread_context.hpp
3 // ~~~~~~~~~~~~~~~~~~~~~~~~~
4 //
5 // Copyright (c) 2003-2020 Christopher M. Kohlhoff (chris at kohlhoff dot com)
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 
11 #ifndef ASIO_DETAIL_THREAD_CONTEXT_HPP
12 #define ASIO_DETAIL_THREAD_CONTEXT_HPP
13 
14 #if defined(_MSC_VER) && (_MSC_VER >= 1200)
15 # pragma once
16 #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
17 
18 #include <climits>
19 #include <cstddef>
20 #include "asio/detail/call_stack.hpp"
21 
22 #include "asio/detail/push_options.hpp"
23 
24 namespace asio {
25 namespace detail {
26 
27 class thread_info_base;
28 
29 // Base class for things that manage threads (scheduler, win_iocp_io_context).
31 {
32 public:
33  // Per-thread call stack to track the state of each thread in the context.
35 };
36 
37 } // namespace detail
38 } // namespace asio
39 
40 #include "asio/detail/pop_options.hpp"
41 
42 #endif // ASIO_DETAIL_THREAD_CONTEXT_HPP
Definition: thread_context.hpp:30
Definition: chrono.h:284
Definition: call_stack.hpp:30
Definition: any_io_executor.hpp:28