blob: 37e15ded8526c7cb2ef288e9c8be74825131a589 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#include "interop.h"
namespace NYT::NBacktrace {
////////////////////////////////////////////////////////////////////////////////
TFramePointerCursorContext FramePointerCursorContextFromUcontext(const ucontext_t& /*ucontext*/)
{
return {};
}
std::optional<unw_context_t> TrySynthesizeLibunwindContextFromMachineContext(
const TContMachineContext& /*machineContext*/)
{
return {};
}
TFramePointerCursorContext FramePointerCursorContextFromLibunwindCursor(
const unw_cursor_t& /*cursor*/)
{
return {};
}
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT::NBacktrace
|