4c9e138513
Formatting changes in the files which have been changed in the tt-removal patchset so far. These include: copyright updates header file trimming style fixes adding severity to printks indenting Kconfig help according to the predominant kernel style These changes should be entirely non-functional. Signed-off-by: Jeff Dike <jdike@linux.intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
36 lines
686 B
C
36 lines
686 B
C
/*
|
|
* Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
|
* Licensed under the GPL
|
|
*/
|
|
|
|
#include <errno.h>
|
|
#include <sys/ptrace.h>
|
|
|
|
int ptrace_getregs(long pid, unsigned long *regs_out)
|
|
{
|
|
if (ptrace(PTRACE_GETREGS, pid, 0, regs_out) < 0)
|
|
return -errno;
|
|
return 0;
|
|
}
|
|
|
|
int ptrace_setregs(long pid, unsigned long *regs)
|
|
{
|
|
if (ptrace(PTRACE_SETREGS, pid, 0, regs) < 0)
|
|
return -errno;
|
|
return 0;
|
|
}
|
|
|
|
int ptrace_getfpregs(long pid, unsigned long *regs)
|
|
{
|
|
if (ptrace(PTRACE_GETFPREGS, pid, 0, regs) < 0)
|
|
return -errno;
|
|
return 0;
|
|
}
|
|
|
|
int ptrace_setfpregs(long pid, unsigned long *regs)
|
|
{
|
|
if (ptrace(PTRACE_SETFPREGS, pid, 0, regs) < 0)
|
|
return -errno;
|
|
return 0;
|
|
}
|