xref: /linux/arch/um/include/shared/ptrace_user.h (revision e91c37f1)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
4  */
5 
6 #ifndef __PTRACE_USER_H__
7 #define __PTRACE_USER_H__
8 
9 #include <sys/ptrace.h>
10 #include <sysdep/ptrace_user.h>
11 
12 extern int ptrace_getregs(long pid, unsigned long *regs_out);
13 extern int ptrace_setregs(long pid, unsigned long *regs_in);
14 
15 #endif
16