]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/sys/ptrace.h
xnu-344.tar.gz
[apple/xnu.git] / bsd / sys / ptrace.h
index fa63ab9d8dd52c07dd773fb0aa29457b894779f5..3ae7cdadbe929be11a88674e19a03b2b8ca94600 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2000-2002 Apple Computer, Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
@@ -58,6 +58,8 @@
 #ifndef        _SYS_PTRACE_H_
 #define        _SYS_PTRACE_H_
 
+#include <sys/appleapiopts.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_DENY_ATTACH  31
+#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 */
 
 #ifdef KERNEL
+#ifdef __APPLE_API_PRIVATE
 void   proc_reparent __P((struct proc *child, struct proc *newparent));
 
+#endif /* __APPLE_API_PRIVATE */
 #else /* !KERNEL */
 
 #include <sys/cdefs.h>