diff options
author | James Mintram <me@jamesrm.com> | 2021-10-15 20:55:22 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-10-15 21:48:45 +0100 |
commit | f4fb6379145e5dfa6e008e936f7f2763199e6b5a (patch) | |
tree | 9b36b57be303da2ebe85eef5d037acf8f7c6e400 /AK/Weakable.h | |
parent | 8b57e56d6627a6e8c82629617ec4181c4b6aa1c9 (diff) | |
download | serenity-f4fb6379145e5dfa6e008e936f7f2763199e6b5a.zip |
Kernel: Split ScopedCritical so header is platform independent
A new header file has been created in the Arch/ folder while the
implementation has been moved into a CPP living in the X86 folder.
Diffstat (limited to 'AK/Weakable.h')
-rw-r--r-- | AK/Weakable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/Weakable.h b/AK/Weakable.h index f093af8a2a..5a98b24a62 100644 --- a/AK/Weakable.h +++ b/AK/Weakable.h @@ -13,7 +13,7 @@ #include "StdLibExtras.h" #ifdef KERNEL # include <Kernel/Arch/Processor.h> -# include <Kernel/Arch/x86/ScopedCritical.h> +# include <Kernel/Arch/ScopedCritical.h> #endif namespace AK { |