summaryrefslogtreecommitdiffstats
path: root/arch/alpha/include/asm/ptrace.h
diff options
context:
space:
mode:
author蔡正龙 <zhenglong.cai@cs2c.com.cn>2013-12-20 10:04:10 +0800
committerMatt Turner <mattst88@gmail.com>2014-01-31 09:21:55 -0800
commita9302e8439445710552886e7b623dbcfa943a1f2 (patch)
treef81ad376d8143a745d6f3c1d775ab28f353e75ae /arch/alpha/include/asm/ptrace.h
parente7651b819e90da924991d727d3c007200a18670d (diff)
downloadlinux-a9302e8439445710552886e7b623dbcfa943a1f2.tar.bz2
alpha: Enable system-call auditing support.
Signed-off-by: Zhenglong.cai <zhenglong.cai@cs2c.com.cn> Signed-off-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'arch/alpha/include/asm/ptrace.h')
-rw-r--r--arch/alpha/include/asm/ptrace.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/alpha/include/asm/ptrace.h b/arch/alpha/include/asm/ptrace.h
index 21128505ddbe..9047c2fe8f23 100644
--- a/arch/alpha/include/asm/ptrace.h
+++ b/arch/alpha/include/asm/ptrace.h
@@ -19,4 +19,9 @@
#define force_successful_syscall_return() (current_pt_regs()->r0 = 0)
+static inline unsigned long regs_return_value(struct pt_regs *regs)
+{
+ return regs->r0;
+}
+
#endif