blob: 43c70c3de2f96de8b3504b8599ff1863cbbc62bc [file] [log] [blame]
Jan Beulich176a2712006-06-26 13:57:41 +02001#ifndef _ASM_I386_UNWIND_H
2#define _ASM_I386_UNWIND_H
3
Jan Beulich176a2712006-06-26 13:57:41 +02004#define UNW_PC(frame) ((void)(frame), 0)
Jan Beulichea424052006-08-30 19:37:11 +02005#define UNW_SP(frame) ((void)(frame), 0)
Andi Kleena32cf392006-09-26 10:52:34 +02006#define UNW_FP(frame) ((void)(frame), 0)
Jan Beulich176a2712006-06-26 13:57:41 +02007
8static inline int arch_unw_user_mode(const void *info)
9{
10 return 0;
11}
12
Jan Beulich176a2712006-06-26 13:57:41 +020013#endif /* _ASM_I386_UNWIND_H */