]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/winapi/stack_backtrace.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / winapi / stack_backtrace.hpp
CommitLineData
b32b8144
FG
1/*
2 * Copyright 2017 Andrey Semashev
3 *
4 * Distributed under the Boost Software License, Version 1.0.
5 * See http://www.boost.org/LICENSE_1_0.txt
6 */
7
8#ifndef BOOST_WINAPI_STACK_BACKTRACE_HPP_INCLUDED_
9#define BOOST_WINAPI_STACK_BACKTRACE_HPP_INCLUDED_
10
11#include <boost/winapi/basic_types.hpp>
12#include <boost/winapi/config.hpp>
13
14#ifdef BOOST_HAS_PRAGMA_ONCE
15#pragma once
16#endif
17
18// MinGW does not provide RtlCaptureStackBackTrace
19#if !defined( BOOST_WINAPI_IS_MINGW )
20
21// Note: RtlCaptureStackBackTrace is available in WinXP SP1 and later
22#if (BOOST_USE_NTDDI_VERSION > BOOST_WINAPI_NTDDI_WINXP)
23
24#if BOOST_WINAPI_PARTITION_APP_SYSTEM
25
26// Windows SDK shipped with MSVC 7.1 and 8 does not declare RtlCaptureStackBackTrace in headers but allows to link with it
27#if !defined( BOOST_USE_WINDOWS_H ) || (defined(_MSC_VER) && (_MSC_VER+0) < 1500)
28extern "C" {
29
92f5a8d4
TL
30BOOST_SYMBOL_IMPORT boost::winapi::WORD_
31BOOST_WINAPI_NTAPI_CC RtlCaptureStackBackTrace(
b32b8144
FG
32 boost::winapi::DWORD_ FramesToSkip,
33 boost::winapi::DWORD_ FramesToCapture,
34 boost::winapi::PVOID_* BackTrace,
92f5a8d4 35 boost::winapi::PDWORD_ BackTraceHash);
b32b8144
FG
36
37} // extern "C"
38#endif
39
40namespace boost {
41namespace winapi {
42
43using ::RtlCaptureStackBackTrace;
44
45}
46}
47
48#endif // BOOST_WINAPI_PARTITION_APP_SYSTEM
92f5a8d4 49#endif // (BOOST_USE_NTDDI_VERSION > BOOST_WINAPI_NTDDI_WINXP)
b32b8144
FG
50#endif // !defined( BOOST_WINAPI_IS_MINGW )
51#endif // BOOST_WINAPI_STACK_BACKTRACE_HPP_INCLUDED_