diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2008-07-15 23:16:08 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-06-18 00:27:15 +0200 |
commit | 67a6c6b8be26c9d965f5aba52c83927e878f87ef (patch) | |
tree | 5d29320cf8a5344f33601470a9551a51017d3218 | |
parent | c8a75aa6c038e6429406a57e2265d99f702b5f00 (diff) |
2008-07-15 Barry deFreese <bddebian@comcast.net>
* device/ds_routine.h (ds_notify): Add prototype.
* kern/ipc_kobject.c: Include <device/ds_routines.h>
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | device/ds_routines.h | 1 | ||||
-rw-r--r-- | kern/ipc_kobject.c | 1 |
3 files changed, 4 insertions, 0 deletions
@@ -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> |