1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 05:17:34 +00:00

Kernel: Move FIFO into FileSystem/ and Socket+LocalSocket into Net/.

This commit is contained in:
Andreas Kling 2019-04-06 20:29:48 +02:00
parent f2580dcfeb
commit 644c887594
15 changed files with 20 additions and 20 deletions

View file

@ -25,7 +25,7 @@ KERNEL_OBJS = \
TTY/MasterPTY.o \
TTY/SlavePTY.o \
TTY/VirtualConsole.o \
FIFO.o \
FileSystem/FIFO.o \
Scheduler.o \
DoubleBuffer.o \
ELF/ELFImage.o \
@ -35,8 +35,8 @@ KERNEL_OBJS = \
Devices/BXVGADevice.o \
PCI.o \
Devices/PS2MouseDevice.o \
Socket.o \
LocalSocket.o \
Net/Socket.o \
Net/LocalSocket.o \
Net/IPv4Socket.o \
Net/TCPSocket.o \
Net/UDPSocket.o \