Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 455c6fdbd219161bd09b1165f11699d6d73de11c authored by Linus Torvalds on 31 March 2014, 03:40:15 UTC
Linux 3.14
Tip revision: 455c6fd
ptrace_64.h
#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 */
back to top