]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/context/include/boost/context/detail/fcontext_x86_64.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / context / include / boost / context / detail / fcontext_x86_64.hpp
CommitLineData
7c673cae
FG
1
2// Copyright Oliver Kowalke 2009.
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#ifndef BOOST_CONTEXT_DETAIL_FCONTEXT_X86_64_H
8#define BOOST_CONTEXT_DETAIL_FCONTEXT_X86_64_H
9
10#include <cstddef>
11
12#include <boost/config.hpp>
13#include <boost/cstdint.hpp>
14
15#include <boost/context/detail/config.hpp>
16
17#ifdef BOOST_HAS_ABI_HEADERS
18# include BOOST_ABI_PREFIX
19#endif
20
21namespace boost {
22namespace context {
23
24extern "C" {
25
26#define BOOST_CONTEXT_CALLDECL
27
28struct stack_t
29{
30 void * sp;
31 std::size_t size;
32
33 stack_t() :
34 sp( 0), size( 0)
35 {}
36};
37
38struct fp_t
39{
40 boost::uint32_t fc_freg[2];
41
42 fp_t() :
43 fc_freg()
44 {}
45};
46
47struct fcontext_t
48{
49 boost::uint64_t fc_greg[8];
50 stack_t fc_stack;
51 fp_t fc_fp;
52
53 fcontext_t() :
54 fc_greg(),
55 fc_stack(),
56 fc_fp()
57 {}
58};
59
60}
61
62}}
63
64#ifdef BOOST_HAS_ABI_HEADERS
65# include BOOST_ABI_SUFFIX
66#endif
67
68#endif // BOOST_CONTEXT_DETAIL_FCONTEXT_X86_64_H