diff options
author | LD <luca@orpolo.org> | 2024-03-09 15:02:44 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-03-09 18:51:33 +0100 |
commit | afec41f9d80cb1f923d0d4f76af832b036dc2f4f (patch) | |
tree | 2952a39068c1660b96f589593ab435de8e12fa94 /ipc/mach_msg.c | |
parent | 8e726dc9abda7027922444a53eb3131c8e267666 (diff) | |
download | gnumach-afec41f9d80cb1f923d0d4f76af832b036dc2f4f.tar.gz gnumach-afec41f9d80cb1f923d0d4f76af832b036dc2f4f.tar.bz2 gnumach-afec41f9d80cb1f923d0d4f76af832b036dc2f4f.zip |
move x86 copy_user.[ch] to ipc/ and make it arch-indipendent
Message-ID: <20240309140244.347835-3-luca@orpolo.org>
Diffstat (limited to 'ipc/mach_msg.c')
-rw-r--r-- | ipc/mach_msg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/mach_msg.c b/ipc/mach_msg.c index 6194ef7b..ff5e5b09 100644 --- a/ipc/mach_msg.c +++ b/ipc/mach_msg.c @@ -39,7 +39,6 @@ #include <mach/kern_return.h> #include <mach/port.h> #include <mach/message.h> -#include <machine/copy_user.h> #include <kern/assert.h> #include <kern/counters.h> #include <kern/debug.h> @@ -49,6 +48,7 @@ #include <kern/ipc_sched.h> #include <kern/exception.h> #include <vm/vm_map.h> +#include <ipc/copy_user.h> #include <ipc/ipc_kmsg.h> #include <ipc/ipc_marequest.h> #include <ipc/ipc_mqueue.h> |