Back to home page

OSCL-LXR

 
 

    


0001 /*
0002  * Copyright (C) 2007 Jeff Dike (jdike@{addtoit.com,linux.intel.com})
0003  * Licensed under the GPL
0004  */
0005 
0006 #include <sys/ptrace.h>
0007 #include <asm/ptrace.h>
0008 
0009 int os_arch_prctl(int pid, int option, unsigned long *arg2)
0010 {
0011     return ptrace(PTRACE_ARCH_PRCTL, pid, (unsigned long) arg2, option);
0012 }