diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-07-29 10:55:29 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-07-29 11:19:04 +0200 |
commit | c59fdcc021f2c57a6619f4dbc2bb9948bb6bf31c (patch) | |
tree | a8b2b9d281a59b13bc0ff957e5699745e7e3a1b1 /Kernel/Makefile | |
parent | 5ded77df39e816f565b26761624893d085ca6eef (diff) | |
download | serenity-c59fdcc021f2c57a6619f4dbc2bb9948bb6bf31c.zip |
Kernel: Move Lock code out-of-line.
It's so big and chunky anyway, it's silly to expand it everywhere.
This makes it a lot easier to read function disassembly dumps.
Diffstat (limited to 'Kernel/Makefile')
-rw-r--r-- | Kernel/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Makefile b/Kernel/Makefile index 65325a1ad0..9dcccc2ef4 100644 --- a/Kernel/Makefile +++ b/Kernel/Makefile @@ -4,6 +4,7 @@ KERNEL_OBJS = \ init.o \ kmalloc.o \ StdLib.o \ + Lock.o \ Arch/i386/CPU.o \ Process.o \ SharedBuffer.o \ |