Clementine
Thirdparty
asio
include
asio
detail
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).
30
class
thread_context
31
{
32
public
:
33
// Per-thread call stack to track the state of each thread in the context.
34
typedef
call_stack<thread_context, thread_info_base>
thread_call_stack
;
35
};
36
37
}
// namespace detail
38
}
// namespace asio
39
40
#include "asio/detail/pop_options.hpp"
41
42
#endif // ASIO_DETAIL_THREAD_CONTEXT_HPP
asio::detail::thread_context
Definition:
thread_context.hpp:30
detail
Definition:
chrono.h:284
asio::detail::call_stack
Definition:
call_stack.hpp:30
asio
Definition:
any_io_executor.hpp:28
Generated by
1.8.13