blob: 0b10c3e7402885ae69d471773d554c49b09dc51d [file] [log] [blame]
Jeff Dike48b20182007-05-06 14:51:00 -07001/*
Jeff Dike4c9e1382007-10-16 01:26:54 -07002 * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Licensed under the GPL
4 */
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <errno.h>
Jeff Dike4c9e1382007-10-16 01:26:54 -07007#include <sys/ptrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
9int ptrace_getregs(long pid, unsigned long *regs_out)
10{
11 if (ptrace(PTRACE_GETREGS, pid, 0, regs_out) < 0)
12 return -errno;
13 return 0;
14}
15
16int ptrace_setregs(long pid, unsigned long *regs)
17{
18 if (ptrace(PTRACE_SETREGS, pid, 0, regs) < 0)
19 return -errno;
20 return 0;
21}