summaryrefslogtreecommitdiff
path: root/include/asm-x86/unwind_32.h
blob: 43c70c3de2f96de8b3504b8599ff1863cbbc62bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _ASM_I386_UNWIND_H
#define _ASM_I386_UNWIND_H

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

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

#endif /* _ASM_I386_UNWIND_H */