Jan Beulich | 176a271 | 2006-06-26 13:57:41 +0200 | [diff] [blame] | 1 | #ifndef _ASM_I386_UNWIND_H |
| 2 | #define _ASM_I386_UNWIND_H |
| 3 | |
Jan Beulich | 176a271 | 2006-06-26 13:57:41 +0200 | [diff] [blame] | 4 | #define UNW_PC(frame) ((void)(frame), 0) |
Jan Beulich | ea42405 | 2006-08-30 19:37:11 +0200 | [diff] [blame] | 5 | #define UNW_SP(frame) ((void)(frame), 0) |
Andi Kleen | a32cf39 | 2006-09-26 10:52:34 +0200 | [diff] [blame] | 6 | #define UNW_FP(frame) ((void)(frame), 0) |
Jan Beulich | 176a271 | 2006-06-26 13:57:41 +0200 | [diff] [blame] | 7 | |
| 8 | static inline int arch_unw_user_mode(const void *info) |
| 9 | { |
| 10 | return 0; |
| 11 | } |
| 12 | |
Jan Beulich | 176a271 | 2006-06-26 13:57:41 +0200 | [diff] [blame] | 13 | #endif /* _ASM_I386_UNWIND_H */ |