1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:47:44 +00:00

Move Lock from AK to Kernel, since it only works inside the kernel.

This commit is contained in:
Andreas Kling 2019-03-16 13:18:22 +01:00
parent 15657f0916
commit 313ee8dd19
12 changed files with 14 additions and 25 deletions

View file

@ -4,7 +4,7 @@
#include <Kernel/DoubleBuffer.h>
#include <Kernel/IPv4.h>
#include <AK/HashMap.h>
#include <AK/Lock.h>
#include <Kernel/Lock.h>
#include <AK/SinglyLinkedList.h>
class IPv4SocketHandle;