Release 4.14 arch/x86/um/os-Linux/prctl.c
/*
* Copyright (C) 2007 Jeff Dike (jdike@{addtoit.com,linux.intel.com})
* Licensed under the GPL
*/
#include <sys/ptrace.h>
#include <asm/ptrace.h>
int os_arch_prctl(int pid, int option, unsigned long *arg2)
{
return ptrace(PTRACE_ARCH_PRCTL, pid, (unsigned long) arg2, option);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jeff Dike | 28 | 87.50% | 1 | 33.33% |
Kyle Huey | 4 | 12.50% | 2 | 66.67% |
Total | 32 | 100.00% | 3 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jeff Dike | 34 | 87.18% | 1 | 25.00% |
Kyle Huey | 4 | 10.26% | 2 | 50.00% |
Richard Weinberger | 1 | 2.56% | 1 | 25.00% |
Total | 39 | 100.00% | 4 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.