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/Makefile | |
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/Makefile')
-rw-r--r-- | Kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Makefile b/Kernel/Makefile index 25574ecd16..208d4c18ab 100644 --- a/Kernel/Makefile +++ b/Kernel/Makefile @@ -5,7 +5,7 @@ KERNEL_OBJS = \ kmalloc.o \ StdLib.o \ i386.o \ - Task.o \ + Process.o \ i8253.o \ Keyboard.o \ CMOS.o \ |