interop_dummy.cpp 641 B

1234567891011121314151617181920212223242526
  1. #include "interop.h"
  2. namespace NYT::NBacktrace {
  3. ////////////////////////////////////////////////////////////////////////////////
  4. TFramePointerCursorContext FramePointerCursorContextFromUcontext(const ucontext_t& /*ucontext*/)
  5. {
  6. return {};
  7. }
  8. std::optional<unw_context_t> TrySynthesizeLibunwindContextFromMachineContext(
  9. const TContMachineContext& /*machineContext*/)
  10. {
  11. return {};
  12. }
  13. TFramePointerCursorContext FramePointerCursorContextFromLibunwindCursor(
  14. const unw_cursor_t& /*cursor*/)
  15. {
  16. return {};
  17. }
  18. ////////////////////////////////////////////////////////////////////////////////
  19. } // namespace NYT::NBacktrace