1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:17:36 +00:00

Kernel+LibC: Move LibC/signal_numbers.h to Kernel/API/POSIX

Make Userland and Tests users just include signal.h, and move Kernel
users to the new API file.
This commit is contained in:
Andrew Kaster 2023-01-07 10:54:01 -07:00 committed by Andrew Kaster
parent d4ef2e226c
commit 046c23f567
11 changed files with 7 additions and 9 deletions

View file

@ -16,6 +16,7 @@
#include <AK/Variant.h>
#include <AK/Vector.h>
#include <Kernel/API/POSIX/sched.h>
#include <Kernel/API/POSIX/signal_numbers.h>
#include <Kernel/Arch/RegisterState.h>
#include <Kernel/Arch/ThreadRegisters.h>
#include <Kernel/Debug.h>
@ -31,7 +32,6 @@
#include <Kernel/Memory/VirtualRange.h>
#include <Kernel/UnixTypes.h>
#include <LibC/fd_set.h>
#include <LibC/signal_numbers.h>
namespace Kernel {