diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-10-10 13:17:31 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-10-14 19:37:40 -0400 |
commit | 557e1995a92d318206910d8b5c62075fe02b37e0 (patch) | |
tree | 8373bada8e8f5306eed59487827265305fa0f1be /arch/h8300/include/asm/ptrace.h | |
parent | ddffeb8c4d0331609ef2581d84de4d763607bd37 (diff) | |
download | op-kernel-dev-557e1995a92d318206910d8b5c62075fe02b37e0.zip op-kernel-dev-557e1995a92d318206910d8b5c62075fe02b37e0.tar.gz |
h8300: generic kernel_thread()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/h8300/include/asm/ptrace.h')
-rw-r--r-- | arch/h8300/include/asm/ptrace.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/h8300/include/asm/ptrace.h b/arch/h8300/include/asm/ptrace.h index d09c440..00502a6 100644 --- a/arch/h8300/include/asm/ptrace.h +++ b/arch/h8300/include/asm/ptrace.h @@ -60,6 +60,8 @@ struct pt_regs { #define user_mode(regs) (!((regs)->ccr & PS_S)) #define instruction_pointer(regs) ((regs)->pc) #define profile_pc(regs) instruction_pointer(regs) +#define current_pt_regs() ((struct pt_regs *) \ + (THREAD_SIZE + (unsigned long)current_thread_info()) - 1) #endif /* __KERNEL__ */ #endif /* __ASSEMBLY__ */ #endif /* _H8300_PTRACE_H */ |