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