summaryrefslogtreecommitdiff
path: root/ipc
diff options
context:
space:
mode:
Diffstat (limited to 'ipc')
-rw-r--r--ipc/ipc_entry.c2
-rw-r--r--ipc/ipc_hash.c2
-rw-r--r--ipc/ipc_kmsg.c2
-rw-r--r--ipc/ipc_mqueue.c1
-rw-r--r--ipc/ipc_notify.c2
-rw-r--r--ipc/ipc_object.c3
-rw-r--r--ipc/ipc_port.c2
-rw-r--r--ipc/ipc_pset.c2
-rw-r--r--ipc/ipc_right.c1
-rw-r--r--ipc/mach_msg.c3
-rw-r--r--ipc/mach_port.c3
-rw-r--r--ipc/mach_rpc.c2
12 files changed, 15 insertions, 10 deletions
diff --git a/ipc/ipc_entry.c b/ipc/ipc_entry.c
index 705638d..9084411 100644
--- a/ipc/ipc_entry.c
+++ b/ipc/ipc_entry.c
@@ -34,7 +34,7 @@
* Primitive functions to manipulate translation entries.
*/
-#include <printf.h>
+#include <kern/printf.h>
#include <string.h>
#include <mach/kern_return.h>
diff --git a/ipc/ipc_hash.c b/ipc/ipc_hash.c
index 4f21073..ce720c7 100644
--- a/ipc/ipc_hash.c
+++ b/ipc/ipc_hash.c
@@ -31,7 +31,7 @@
* Entry hash table operations.
*/
-#include <printf.h>
+#include <kern/printf.h>
#include <mach/boolean.h>
#include <mach/port.h>
#include <kern/lock.h>
diff --git a/ipc/ipc_kmsg.c b/ipc/ipc_kmsg.c
index 1c9ef87..f918bd4 100644
--- a/ipc/ipc_kmsg.c
+++ b/ipc/ipc_kmsg.c
@@ -34,7 +34,7 @@
* Operations on kernel messages.
*/
-#include <printf.h>
+#include <kern/printf.h>
#include <string.h>
#include <mach/boolean.h>
diff --git a/ipc/ipc_mqueue.c b/ipc/ipc_mqueue.c
index e0ebc86..4aee2cc 100644
--- a/ipc/ipc_mqueue.c
+++ b/ipc/ipc_mqueue.c
@@ -38,6 +38,7 @@
#include <mach/message.h>
#include <kern/assert.h>
#include <kern/counters.h>
+#include <kern/debug.h> /* for panic() */
#include <kern/sched_prim.h>
#include <kern/ipc_sched.h>
#include <kern/ipc_kobject.h>
diff --git a/ipc/ipc_notify.c b/ipc/ipc_notify.c
index 30cfac4..3dea9fc 100644
--- a/ipc/ipc_notify.c
+++ b/ipc/ipc_notify.c
@@ -31,7 +31,7 @@
* Notification-sending functions.
*/
-#include <printf.h>
+#include <kern/printf.h>
#include <mach/port.h>
#include <mach/message.h>
#include <mach/notify.h>
diff --git a/ipc/ipc_object.c b/ipc/ipc_object.c
index 53f7793..d2f60f9 100644
--- a/ipc/ipc_object.c
+++ b/ipc/ipc_object.c
@@ -31,7 +31,6 @@
* Functions to manipulate IPC objects.
*/
-#include <printf.h>
#include <string.h>
#include <mach/boolean.h>
@@ -46,6 +45,8 @@
#include <ipc/ipc_right.h>
#include <ipc/ipc_notify.h>
#include <ipc/ipc_pset.h>
+#include <kern/debug.h> /* for panic() */
+#include <kern/printf.h>
zone_t ipc_object_zones[IOT_NUMBER];
diff --git a/ipc/ipc_port.c b/ipc/ipc_port.c
index fa8ed3a..f19cca6 100644
--- a/ipc/ipc_port.c
+++ b/ipc/ipc_port.c
@@ -34,7 +34,7 @@
* Functions to manipulate IPC ports.
*/
-#include <printf.h>
+#include <kern/printf.h>
#include <string.h>
#include <mach/port.h>
diff --git a/ipc/ipc_pset.c b/ipc/ipc_pset.c
index 049c66d..141cbdb 100644
--- a/ipc/ipc_pset.c
+++ b/ipc/ipc_pset.c
@@ -36,7 +36,7 @@
* Functions to manipulate IPC port sets.
*/
-#include <printf.h>
+#include <kern/printf.h>
#include <mach/port.h>
#include <mach/kern_return.h>
#include <mach/message.h>
diff --git a/ipc/ipc_right.c b/ipc/ipc_right.c
index b1e538d..176ecc6 100644
--- a/ipc/ipc_right.c
+++ b/ipc/ipc_right.c
@@ -38,6 +38,7 @@
#include <mach/port.h>
#include <mach/message.h>
#include <kern/assert.h>
+#include <kern/debug.h> /* for panic() */
#include <ipc/port.h>
#include <ipc/ipc_entry.h>
#include <ipc/ipc_space.h>
diff --git a/ipc/mach_msg.c b/ipc/mach_msg.c
index a02462d..0fe2f7c 100644
--- a/ipc/mach_msg.c
+++ b/ipc/mach_msg.c
@@ -36,13 +36,14 @@
* Exported message traps. See mach/message.h.
*/
-#include <printf.h>
#include <mach/kern_return.h>
#include <mach/port.h>
#include <mach/message.h>
#include <kern/assert.h>
#include <kern/counters.h>
+#include <kern/debug.h> /* for panic() */
#include <kern/lock.h>
+#include <kern/printf.h>
#include <kern/sched_prim.h>
#include <kern/ipc_sched.h>
#include <vm/vm_map.h>
diff --git a/ipc/mach_port.c b/ipc/mach_port.c
index b78ab25..a739aa0 100644
--- a/ipc/mach_port.c
+++ b/ipc/mach_port.c
@@ -36,7 +36,8 @@
* Exported kernel calls. See mach/mach_port.defs.
*/
-#include <printf.h>
+#include <kern/debug.h> /* for panic() */
+#include <kern/printf.h>
#include <mach/port.h>
#include <mach/kern_return.h>
#include <mach/notify.h>
diff --git a/ipc/mach_rpc.c b/ipc/mach_rpc.c
index dae097a..7f5b2eb 100644
--- a/ipc/mach_rpc.c
+++ b/ipc/mach_rpc.c
@@ -21,7 +21,7 @@
#ifdef MIGRATING_THREADS
-#include <printf.h>
+#include <kern/printf.h>
#include <mach/kern_return.h>
#include <mach/port.h>
#include <mach/rpc.h>