Release 4.14 arch/x86/um/ptrace_user.c
/*
* Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
* Licensed under the GPL
*/
#include <errno.h>
#include <ptrace_user.h>
int ptrace_getregs(long pid, unsigned long *regs_out)
{
if (ptrace(PTRACE_GETREGS, pid, 0, regs_out) < 0)
return -errno;
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jeff Dike | 24 | 68.57% | 1 | 50.00% |
Paolo 'Blaisorblade' Giarrusso | 11 | 31.43% | 1 | 50.00% |
Total | 35 | 100.00% | 2 | 100.00% |
int ptrace_setregs(long pid, unsigned long *regs)
{
if (ptrace(PTRACE_SETREGS, pid, 0, regs) < 0)
return -errno;
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jeff Dike | 24 | 68.57% | 1 | 50.00% |
Paolo 'Blaisorblade' Giarrusso | 11 | 31.43% | 1 | 50.00% |
Total | 35 | 100.00% | 2 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jeff Dike | 54 | 70.13% | 3 | 60.00% |
Paolo 'Blaisorblade' Giarrusso | 22 | 28.57% | 1 | 20.00% |
Al Viro | 1 | 1.30% | 1 | 20.00% |
Total | 77 | 100.00% | 5 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.