From 392e8802486cb573b916e746010e141a75f507e6 Mon Sep 17 00:00:00 2001 From: Kevin Date: Sat, 15 Nov 2014 09:58:27 +0800 Subject: init android origin source code --- .../arch/x86/um/shared/sysdep/ptrace_user.h | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 ANDROID_3.4.5/arch/x86/um/shared/sysdep/ptrace_user.h (limited to 'ANDROID_3.4.5/arch/x86/um/shared/sysdep/ptrace_user.h') diff --git a/ANDROID_3.4.5/arch/x86/um/shared/sysdep/ptrace_user.h b/ANDROID_3.4.5/arch/x86/um/shared/sysdep/ptrace_user.h new file mode 100644 index 00000000..16cd6b5e --- /dev/null +++ b/ANDROID_3.4.5/arch/x86/um/shared/sysdep/ptrace_user.h @@ -0,0 +1,27 @@ +#include + +#define PT_OFFSET(r) ((r) * sizeof(long)) + +#define PT_SYSCALL_NR(regs) ((regs)[HOST_ORIG_AX]) +#define PT_SYSCALL_NR_OFFSET PT_OFFSET(HOST_ORIG_AX) + +#define PT_SYSCALL_RET_OFFSET PT_OFFSET(HOST_AX) + +#define REGS_IP_INDEX HOST_IP +#define REGS_SP_INDEX HOST_SP + +#ifdef __i386__ +#define FP_SIZE ((HOST_FPX_SIZE > HOST_FP_SIZE) ? HOST_FPX_SIZE : HOST_FP_SIZE) +#else +#define FP_SIZE HOST_FP_SIZE + +/* + * x86_64 FC3 doesn't define this in /usr/include/linux/ptrace.h even though + * it's defined in the kernel's include/linux/ptrace.h. Additionally, use the + * 2.4 name and value for 2.4 host compatibility. + */ +#ifndef PTRACE_OLDSETOPTIONS +#define PTRACE_OLDSETOPTIONS 21 +#endif + +#endif -- cgit