unwind.h 285 字节
Newer Older
V
Vegard Nossum 已提交
1 2
#ifndef ASM_X86__UNWIND_H
#define ASM_X86__UNWIND_H
3 4 5 6 7 8 9 10 11 12

#define UNW_PC(frame) ((void)(frame), 0UL)
#define UNW_SP(frame) ((void)(frame), 0UL)
#define UNW_FP(frame) ((void)(frame), 0UL)

static inline int arch_unw_user_mode(const void *info)
{
	return 0;
}

V
Vegard Nossum 已提交
13
#endif /* ASM_X86__UNWIND_H */