1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:27:43 +00:00

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.
This commit is contained in:
Andreas Kling 2019-07-29 10:55:29 +02:00
parent 5ded77df39
commit c59fdcc021
2 changed files with 1 additions and 68 deletions

View file

@ -4,6 +4,7 @@ KERNEL_OBJS = \
init.o \
kmalloc.o \
StdLib.o \
Lock.o \
Arch/i386/CPU.o \
Process.o \
SharedBuffer.o \