summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--device/ds_routines.h1
-rw-r--r--kern/ipc_kobject.c1
3 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 5b5c52d..9628ee7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -17,6 +17,8 @@
* kern/sched_prim.c: Likewise.
* kern/time_stamp.c: Likewise.
* vm/vm_kern.c: Likewise.
+ * device/ds_routine.h (ds_notify): Add prototype.
+ * kern/ipc_kobject.c: Include <device/ds_routines.h>
2008-07-04 Samuel Thibault <samuel.thibault@ens-lyon.org>
diff --git a/device/ds_routines.h b/device/ds_routines.h
index 3281c4c..f794303 100644
--- a/device/ds_routines.h
+++ b/device/ds_routines.h
@@ -47,6 +47,7 @@ kern_return_t device_read_alloc(io_req_t, vm_size_t);
kern_return_t device_write_get(io_req_t, boolean_t *);
boolean_t device_write_dealloc(io_req_t);
+boolean_t ds_notify(mach_msg_header_t *msg);
boolean_t ds_open_done(io_req_t);
boolean_t ds_read_done(io_req_t);
boolean_t ds_write_done(io_req_t);
diff --git a/kern/ipc_kobject.c b/kern/ipc_kobject.c
index 473b1df..4935093 100644
--- a/kern/ipc_kobject.c
+++ b/kern/ipc_kobject.c
@@ -45,6 +45,7 @@
#include <ipc/ipc_kmsg.h>
#include <ipc/ipc_port.h>
#include <ipc/ipc_thread.h>
+#include <device/ds_routines.h>
#if MACH_MACHINE_ROUTINES
#include <machine/machine_routines.h>