Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 374b105797c3d4f29c685f3be535c35f5689b30e authored by Linus Torvalds on 06 December 2013, 17:34:04 UTC
Linux 3.13-rc3
Tip revision: 374b105
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