summaryrefslogtreecommitdiffstats
path: root/include/asm-s390/ptrace.h
diff options
context:
space:
mode:
authorAnanth N Mavinakayanahalli2006-10-02 11:17:31 +0200
committerLinus Torvalds2006-10-02 16:57:16 +0200
commitb3f827cb0fe0660c2eacea2c2f9bdb1f225ff768 (patch)
treeae912b3b929526184eeca0519550635dc39b5362 /include/asm-s390/ptrace.h
parent[PATCH] kprobes: handle symbol resolution when <module:.symbol> is specified (diff)
downloadkernel-qcow2-linux-b3f827cb0fe0660c2eacea2c2f9bdb1f225ff768.tar.gz
kernel-qcow2-linux-b3f827cb0fe0660c2eacea2c2f9bdb1f225ff768.tar.xz
kernel-qcow2-linux-b3f827cb0fe0660c2eacea2c2f9bdb1f225ff768.zip
[PATCH] Add regs_return_value() helper
Add the regs_return_value() macro to extract the return value in an architecture agnostic manner, given the pt_regs. Other architecture maintainers may want to add similar helpers. Signed-off-by: Ananth N Mavinakayanahalli <ananth@in.ibm.com> Signed-off-by: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-s390/ptrace.h')
-rw-r--r--include/asm-s390/ptrace.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asm-s390/ptrace.h b/include/asm-s390/ptrace.h
index 8d2bf65b0b64..7b768c5c68a8 100644
--- a/include/asm-s390/ptrace.h
+++ b/include/asm-s390/ptrace.h
@@ -472,6 +472,7 @@ struct user_regs_struct
#define user_mode(regs) (((regs)->psw.mask & PSW_MASK_PSTATE) != 0)
#define instruction_pointer(regs) ((regs)->psw.addr & PSW_ADDR_INSN)
+#define regs_return_value(regs)((regs)->gprs[2])
#define profile_pc(regs) instruction_pointer(regs)
extern void show_regs(struct pt_regs * regs);
#endif