unwind_64.h 251 B

123456789101112
  1. #ifndef _ASM_X86_64_UNWIND_H
  2. #define _ASM_X86_64_UNWIND_H
  3. #define UNW_PC(frame) ((void)(frame), 0UL)
  4. #define UNW_SP(frame) ((void)(frame), 0UL)
  5. static inline int arch_unw_user_mode(const void *info)
  6. {
  7. return 0;
  8. }
  9. #endif /* _ASM_X86_64_UNWIND_H */