#include "interop.h" namespace NYT::NBacktrace { //////////////////////////////////////////////////////////////////////////////// TFramePointerCursorContext FramePointerCursorContextFromUcontext(const ucontext_t& /*ucontext*/) { return {}; } std::optional TrySynthesizeLibunwindContextFromMachineContext( const TContMachineContext& /*machineContext*/) { return {}; } TFramePointerCursorContext FramePointerCursorContextFromLibunwindCursor( const unw_cursor_t& /*cursor*/) { return {}; } //////////////////////////////////////////////////////////////////////////////// } // namespace NYT::NBacktrace