diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-11-29 22:54:07 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-05 06:44:53 +0900 |
commit | 4c427f351acb585bf06f63218cb8ced221d889e0 (patch) | |
tree | 9548718d2fd901b70f6057eb93ee1ad2b55aeb40 /ipc | |
parent | 34918f3816982301834a313f655e13804d6b8ac5 (diff) |
kern/task.c: remove forward declarations
* ipc/ipc_mqueue.h: Include ipc/ipc_kmsg_queue.h.
* kern/ipc_kobject.h: Move includes into ifndef.
* kern/syscall_emulation.h: Include kern/task.h.
(eml_init, eml_task_reference, eml_task_deallocate): Add prototypes.
* kern/task.c: Include kern/syscall_emulation.h.
(eml_init, eml_task_reference, eml_task_deallocate): Remove forward declarations
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/ipc_mqueue.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ipc/ipc_mqueue.h b/ipc/ipc_mqueue.h index ef0f942..f8a2f1e 100644 --- a/ipc/ipc_mqueue.h +++ b/ipc/ipc_mqueue.h @@ -38,6 +38,7 @@ #include <kern/assert.h> #include <kern/lock.h> #include <kern/macro_help.h> +#include <ipc/ipc_kmsg_queue.h> #include <ipc/ipc_kmsg.h> #include <ipc/ipc_thread.h> |