diff options
author | Timon Kruiper <timonkruiper@gmail.com> | 2022-05-16 14:37:50 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-06-02 13:14:12 +0100 |
commit | ea9cf8b6ab6a3941ecb4727723e8e38fbd6b4bb8 (patch) | |
tree | d054be12c97457d41a16653773bf939eb13668b6 /Kernel/Time | |
parent | 9413fe9fe5e585a143502dd96236435a3a353c27 (diff) | |
download | serenity-ea9cf8b6ab6a3941ecb4727723e8e38fbd6b4bb8.zip |
Kernel: Separate NonMaskableInterruptDisabler into its own file
This is for the upcoming change to make InterruptDisabler class work for
the aarch64 build.
Diffstat (limited to 'Kernel/Time')
-rw-r--r-- | Kernel/Time/RTC.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Time/RTC.cpp b/Kernel/Time/RTC.cpp index 86c2d38842..f8b7a690bb 100644 --- a/Kernel/Time/RTC.cpp +++ b/Kernel/Time/RTC.cpp @@ -6,6 +6,7 @@ #include <Kernel/Arch/x86/IO.h> #include <Kernel/Arch/x86/InterruptDisabler.h> +#include <Kernel/Arch/x86/NonMaskableInterruptDisabler.h> #include <Kernel/CMOS.h> #include <Kernel/Time/RTC.h> #include <Kernel/Time/TimeManagement.h> |