diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-11-01 13:15:46 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-11-01 13:15:46 +0100 |
commit | 3e532ac7b6ffeb5c0b0034a7fb2035c4c5756b25 (patch) | |
tree | a587862246012ed41a46e47d50fc218bbc75e539 /Kernel/Syscall.cpp | |
parent | 4e60551aec48297c29bda3718ade03b4e4063080 (diff) | |
download | serenity-3e532ac7b6ffeb5c0b0034a7fb2035c4c5756b25.zip |
Process now maps regions immediately when they are allocated.
This avoids having to do a separate MM.mapRegionsForTask() pass.
Also, more Task => Process renaming that I apparently hadn't saved yet.
Diffstat (limited to 'Kernel/Syscall.cpp')
-rw-r--r-- | Kernel/Syscall.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Syscall.cpp b/Kernel/Syscall.cpp index d84c1642aa..2e24c7ec29 100644 --- a/Kernel/Syscall.cpp +++ b/Kernel/Syscall.cpp @@ -1,5 +1,5 @@ #include "i386.h" -#include "Task.h" +#include "Process.h" #include "Syscall.h" #include "Console.h" |