blob: a2151567db44388a2465bc32924f7399942a821d [file] [log] [blame]
Vegard Nossum77ef50a2008-06-18 17:08:48 +02001#ifndef ASM_X86__UNWIND_H
2#define ASM_X86__UNWIND_H
Thomas Gleixner3f0bde82007-10-15 23:28:21 +02003
4#define UNW_PC(frame) ((void)(frame), 0UL)
5#define UNW_SP(frame) ((void)(frame), 0UL)
6#define UNW_FP(frame) ((void)(frame), 0UL)
7
8static inline int arch_unw_user_mode(const void *info)
9{
10 return 0;
11}
12
Vegard Nossum77ef50a2008-06-18 17:08:48 +020013#endif /* ASM_X86__UNWIND_H */