diff options
author | phk <phk@FreeBSD.org> | 1999-10-29 18:09:36 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1999-10-29 18:09:36 +0000 |
commit | 8e3c3eafedf7a33a4058652691ad300f004263e7 (patch) | |
tree | 54ae4dddde04dac71ef8349b9ecc3e6ad3401152 /sys/i386/linux | |
parent | 2997de7f2f8690623c3c48e8e176212a5a554fb9 (diff) | |
download | FreeBSD-src-8e3c3eafedf7a33a4058652691ad300f004263e7.zip FreeBSD-src-8e3c3eafedf7a33a4058652691ad300f004263e7.tar.gz |
useracc() the prequel:
Merge the contents (less some trivial bordering the silly comments)
of <vm/vm_prot.h> and <vm/vm_inherit.h> into <vm/vm.h>. This puts
the #defines for the vm_inherit_t and vm_prot_t types next to their
typedefs.
This paves the road for the commit to follow shortly: change
useracc() to use VM_PROT_{READ|WRITE} rather than B_{READ|WRITE}
as argument.
Diffstat (limited to 'sys/i386/linux')
-rw-r--r-- | sys/i386/linux/imgact_linux.c | 1 | ||||
-rw-r--r-- | sys/i386/linux/linux_misc.c | 1 | ||||
-rw-r--r-- | sys/i386/linux/linux_sysvec.c | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/sys/i386/linux/imgact_linux.c b/sys/i386/linux/imgact_linux.c index 6a766ba..c560d74 100644 --- a/sys/i386/linux/imgact_linux.c +++ b/sys/i386/linux/imgact_linux.c @@ -48,7 +48,6 @@ #include <vm/vm_param.h> #include <vm/pmap.h> #include <vm/vm_map.h> -#include <vm/vm_prot.h> #include <vm/vm_extern.h> #include <i386/linux/linux.h> diff --git a/sys/i386/linux/linux_misc.c b/sys/i386/linux/linux_misc.c index ff5ba44..36f1165 100644 --- a/sys/i386/linux/linux_misc.c +++ b/sys/i386/linux/linux_misc.c @@ -52,7 +52,6 @@ #include <vm/vm.h> #include <vm/pmap.h> #include <vm/vm_kern.h> -#include <vm/vm_prot.h> #include <vm/vm_map.h> #include <vm/vm_extern.h> diff --git a/sys/i386/linux/linux_sysvec.c b/sys/i386/linux/linux_sysvec.c index d282439..4d0def0 100644 --- a/sys/i386/linux/linux_sysvec.c +++ b/sys/i386/linux/linux_sysvec.c @@ -47,7 +47,6 @@ #include <sys/malloc.h> #include <vm/vm.h> #include <vm/vm_param.h> -#include <vm/vm_prot.h> #include <vm/vm_page.h> #include <vm/vm_extern.h> #include <sys/exec.h> |