Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 5edb56491d4812c42175980759da53388e5d86f5 authored by Linus Torvalds on 12 June 2016, 14:20:35 UTC
Linux 4.7-rc3
Tip revision: 5edb564
ptrace_32.h
#ifndef __ASM_SH_PTRACE_32_H
#define __ASM_SH_PTRACE_32_H

#include <uapi/asm/ptrace_32.h>


#define MAX_REG_OFFSET		offsetof(struct pt_regs, tra)
static inline long regs_return_value(struct pt_regs *regs)
{
	return regs->regs[0];
}

#endif /* __ASM_SH_PTRACE_32_H */
back to top