diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2024-02-12 01:26:33 -0500 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-02-12 18:50:00 +0100 |
commit | df9270ef134498d4fffb921286375137d3639ae5 (patch) | |
tree | 1eb4ddb572f24fbc737a99c4c63d39fe6d2b3653 /ipc | |
parent | 2556fdece900d67529d5eda01f1bdaae4ffe96b0 (diff) | |
download | gnumach-df9270ef134498d4fffb921286375137d3639ae5.tar.gz gnumach-df9270ef134498d4fffb921286375137d3639ae5.tar.bz2 gnumach-df9270ef134498d4fffb921286375137d3639ae5.zip |
Replace kernel header includes in include/mach/mach_types.h with forward declarations.
I was trying to reuse TASK_NAME_SIZE in kern/thread.h but it was
impossible because files included from kern/task.h end up requiring
kern/thread.h (through percpu.h), creating a recursive dependency.
With this change, mach_types.h only defines forward declarations and
modules have to explicitly include the appropriate header file if they
want to be able touch those structures. Most of the other includes are
required because we no longer grab many different includes through
mach_types.h.
Message-ID: <20240212062634.1082207-1-flaviocruz@gmail.com>
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/ipc_space.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ipc/ipc_space.h b/ipc/ipc_space.h index 3f0eaa08..96d58942 100644 --- a/ipc/ipc_space.h +++ b/ipc/ipc_space.h @@ -49,6 +49,7 @@ #include <kern/slab.h> #include <kern/printf.h> #include <ipc/ipc_entry.h> +#include <ipc/ipc_port.h> #include <ipc/ipc_types.h> /* |