prctl.c 287 B

123456789101112
  1. /*
  2. * Copyright (C) 2007 Jeff Dike (jdike@{addtoit.com,linux.intel.com})
  3. * Licensed under the GPL
  4. */
  5. #include <sys/ptrace.h>
  6. #include <asm/ptrace.h>
  7. int os_arch_prctl(int pid, int option, unsigned long *arg2)
  8. {
  9. return ptrace(PTRACE_ARCH_PRCTL, pid, (unsigned long) arg2, option);
  10. }