You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
285 B
14 lines
285 B
![]()
17 years ago
|
#ifndef ASM_X86__UNWIND_H
|
||
|
#define ASM_X86__UNWIND_H
|
||
![]()
18 years ago
|
|
||
|
#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;
|
||
|
}
|
||
|
|
||
![]()
17 years ago
|
#endif /* ASM_X86__UNWIND_H */
|