ptrace_user.h 362 B

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