2007-05-06 14:51:00 -07:00
|
|
|
/*
|
2007-10-16 01:26:54 -07:00
|
|
|
* Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
2005-04-16 15:20:36 -07:00
|
|
|
* Licensed under the GPL
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <errno.h>
|
2012-10-07 19:27:32 -07:00
|
|
|
#include <ptrace_user.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|