]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/sys/ptrace.h
xnu-792.6.76.tar.gz
[apple/xnu.git] / bsd / sys / ptrace.h
index 5304ecdefb9a7ed50f37612bed00e3e090b1d792..61ae0448a4c588fed00fae8bad037e234fbcfced 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2000-2005 Apple Computer, Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
@@ -58,6 +58,9 @@
 #ifndef        _SYS_PTRACE_H_
 #define        _SYS_PTRACE_H_
 
+#include <sys/appleapiopts.h>
+#include <sys/cdefs.h>
+
 #define        PT_TRACE_ME     0       /* child declares it's being traced */
 #define        PT_READ_I       1       /* read word in child's I space */
 #define        PT_READ_D       2       /* read word in child's D space */
 #define        PT_STEP         9       /* single step the child */
 #define        PT_ATTACH       10      /* trace some running process */
 #define        PT_DETACH       11      /* stop tracing a process */
+#define        PT_SIGEXC       12      /* signals as exceptions for current_proc */
+#define PT_THUPDATE    13      /* signal for thread# */
+#define PT_ATTACHEXC   14      /* attach to running process with signal exception */
+
+#define        PT_FORCEQUOTA   30      /* Enforce quota for root */
+#define        PT_DENY_ATTACH  31
 
 #define        PT_FIRSTMACH    32      /* for machine-specific requests */
-#include <machine/ptrace.h>    /* machine-specific requests, if any */
+
+__BEGIN_DECLS
 
 #ifdef KERNEL
-void   proc_reparent __P((struct proc *child, struct proc *newparent));
+#ifdef __APPLE_API_PRIVATE
 
-#else /* !KERNEL */
+void   proc_reparent(struct proc *child, struct proc *newparent);
 
-#include <sys/cdefs.h>
+#endif /* __APPLE_API_PRIVATE */
+#else /* !KERNEL */
 
-__BEGIN_DECLS
-int    ptrace __P((int _request, pid_t _pid, caddr_t _addr, int _data));
-__END_DECLS
+int    ptrace(int _request, pid_t _pid, caddr_t _addr, int _data);
 
 #endif /* !KERNEL */
 
+__END_DECLS
+
 #endif /* !_SYS_PTRACE_H_ */