forked from Minki/linux
0a9426df18
Signed-off-by: David Howells <dhowells@redhat.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Michael Kerrisk <mtk.manpages@gmail.com> Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Acked-by: Dave Jones <davej@redhat.com>
14 lines
273 B
C
14 lines
273 B
C
#ifndef __ASM_SH_PTRACE_64_H
|
|
#define __ASM_SH_PTRACE_64_H
|
|
|
|
#include <uapi/asm/ptrace_64.h>
|
|
|
|
|
|
#define MAX_REG_OFFSET offsetof(struct pt_regs, tregs[7])
|
|
static inline long regs_return_value(struct pt_regs *regs)
|
|
{
|
|
return regs->regs[3];
|
|
}
|
|
|
|
#endif /* __ASM_SH_PTRACE_64_H */
|