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