Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.5-rc7 23 lines 463 B view raw
1#ifndef __ASM_SH_PTRACE_64_H 2#define __ASM_SH_PTRACE_64_H 3 4struct pt_regs { 5 unsigned long long pc; 6 unsigned long long sr; 7 long long syscall_nr; 8 unsigned long long regs[63]; 9 unsigned long long tregs[8]; 10 unsigned long long pad[2]; 11}; 12 13#ifdef __KERNEL__ 14 15#define MAX_REG_OFFSET offsetof(struct pt_regs, tregs[7]) 16static inline long regs_return_value(struct pt_regs *regs) 17{ 18 return regs->regs[3]; 19} 20 21#endif /* __KERNEL__ */ 22 23#endif /* __ASM_SH_PTRACE_64_H */