https://github.com/torvalds/linux
Revision f56df2f4db6e4af87fb8e941cff69f4501a111df authored by Linus Torvalds on 31 January 2007, 03:42:57 UTC, committed by Linus Torvalds on 31 January 2007, 03:42:57 UTC
Ok, so I said there wouldn't be another -rc.

I lied.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent 4222721
Raw File
Tip revision: f56df2f4db6e4af87fb8e941cff69f4501a111df authored by Linus Torvalds on 31 January 2007, 03:42:57 UTC
Linux 2.6.20-rc7
Tip revision: f56df2f
unwind.h
#ifndef _ASM_X86_64_UNWIND_H
#define _ASM_X86_64_UNWIND_H

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

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

#endif /* _ASM_X86_64_UNWIND_H */
back to top