staging: unisys: visorchannel some general function cleanups
[linux-2.6/btrfs-unstable.git] / arch / x86 / um / ptrace_user.c
blob617885b1899273bf9f6203f21bc9158471db778c
1 /*
2 * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3 * Licensed under the GPL
4 */
6 #include <errno.h>
7 #include <ptrace_user.h>
9 int ptrace_getregs(long pid, unsigned long *regs_out)
11 if (ptrace(PTRACE_GETREGS, pid, 0, regs_out) < 0)
12 return -errno;
13 return 0;
16 int ptrace_setregs(long pid, unsigned long *regs)
18 if (ptrace(PTRACE_SETREGS, pid, 0, regs) < 0)
19 return -errno;
20 return 0;