cregit-Linux how code gets into the kernel

Release 4.10 arch/x86/um/ptrace_user.c

Directory: arch/x86/um
/*
 * 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

PersonTokensPropCommitsCommitProp
jeff dikejeff dike2468.57%150.00%
paolo giarrussopaolo giarrusso1131.43%150.00%
Total35100.00%2100.00%


int ptrace_setregs(long pid, unsigned long *regs) { if (ptrace(PTRACE_SETREGS, pid, 0, regs) < 0) return -errno; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
jeff dikejeff dike2468.57%150.00%
paolo giarrussopaolo giarrusso1131.43%150.00%
Total35100.00%2100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
jeff dikejeff dike5470.13%360.00%
paolo giarrussopaolo giarrusso2228.57%120.00%
al viroal viro11.30%120.00%
Total77100.00%5100.00%
Directory: arch/x86/um
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.