summaryrefslogtreecommitdiff
path: root/Kernel/Syscalls/sigaction.cpp
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2023-02-24 20:33:43 +0200
committerJelle Raaijmakers <jelle@gmta.nl>2023-06-04 21:32:34 +0200
commit336fb4f3135c4f41228f1393d85183dc44e8b92b (patch)
treee2425128c665a86bb6a4796a0d1fc42e14f3faf4 /Kernel/Syscalls/sigaction.cpp
parent927926b9247522b4c8854d48a79b55599108cff2 (diff)
downloadserenity-336fb4f3135c4f41228f1393d85183dc44e8b92b.zip
Kernel: Move InterruptDisabler to the Interrupts subdirectory
Diffstat (limited to 'Kernel/Syscalls/sigaction.cpp')
-rw-r--r--Kernel/Syscalls/sigaction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Syscalls/sigaction.cpp b/Kernel/Syscalls/sigaction.cpp
index 47dc72f50a..a72d3a0472 100644
--- a/Kernel/Syscalls/sigaction.cpp
+++ b/Kernel/Syscalls/sigaction.cpp
@@ -6,7 +6,7 @@
*/
#include <Kernel/Arch/SmapDisabler.h>
-#include <Kernel/InterruptDisabler.h>
+#include <Kernel/Interrupts/InterruptDisabler.h>
#include <Kernel/Tasks/Process.h>
namespace Kernel {