diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-11-08 14:35:30 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-11-08 14:42:16 +0100 |
commit | 862f108cb5cf0c3708f245aaf9620c674f371fa0 (patch) | |
tree | 5d87588aab6eff8ec3889ec2a254458a5037f8ff /Kernel/i386.h | |
parent | 3c8064a7872b990c6b48455ed6509d161adf4721 (diff) | |
download | serenity-862f108cb5cf0c3708f245aaf9620c674f371fa0.zip |
Refactor the virtual memory object model a bit:
Process now has a number of Regions.
Each Region is backed by a VMObject.
A VMObject can be file-backed or anonymous. These can be shared.
Diffstat (limited to 'Kernel/i386.h')
-rw-r--r-- | Kernel/i386.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/i386.h b/Kernel/i386.h index 714b78fdc2..10ad9ea4ba 100644 --- a/Kernel/i386.h +++ b/Kernel/i386.h @@ -2,7 +2,7 @@ #include "types.h" -#define PAGE_SIZE 4096u +#define PAGE_SIZE 4096 #define PAGE_MASK 0xfffff000 union Descriptor { |