1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-21 15:25:07 +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

@ -4,7 +4,7 @@
#include <LibC/errno_numbers.h>
#include "FileSystem.h"
#include <Kernel/VM/MemoryManager.h>
#include <Kernel/LocalSocket.h>
#include <Kernel/Net/LocalSocket.h>
static dword s_lastFileSystemID;
static HashMap<dword, FS*>* s_fs_map;