cregit-Linux how code gets into the kernel

Release 4.14 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 Dike2468.57%150.00%
Paolo 'Blaisorblade' 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 Dike2468.57%150.00%
Paolo 'Blaisorblade' Giarrusso1131.43%150.00%
Total35100.00%2100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike5470.13%360.00%
Paolo 'Blaisorblade' Giarrusso2228.57%120.00%
Al 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.
Created with cregit.