diff options
author | Linus Groh <mail@linusgroh.de> | 2021-02-25 21:10:47 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-26 16:59:56 +0100 |
commit | e265054c12a4fb596b26789e18f342711cf3ef95 (patch) | |
tree | 6539a9026bea3294693a9ae932b3528b3761d695 /Kernel/Interrupts | |
parent | be9df404fd180e1b3cab0c1bddce1f589de8e9f0 (diff) | |
download | serenity-e265054c12a4fb596b26789e18f342711cf3ef95.zip |
Everywhere: Remove a bunch of redundant 'AK::' namespace prefixes
This is basically just for consistency, it's quite strange to see
multiple AK container types next to each other, some with and some
without the namespace prefix - we're 'using AK::Foo;' a lot and should
leverage that. :^)
Diffstat (limited to 'Kernel/Interrupts')
-rw-r--r-- | Kernel/Interrupts/APIC.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Interrupts/APIC.h b/Kernel/Interrupts/APIC.h index 2d64a623e5..a83810433f 100644 --- a/Kernel/Interrupts/APIC.h +++ b/Kernel/Interrupts/APIC.h @@ -112,8 +112,8 @@ private: OwnPtr<Region> m_apic_base; Vector<OwnPtr<Processor>> m_ap_processor_info; Vector<Thread*> m_ap_idle_threads; - AK::Atomic<u8> m_apic_ap_count { 0 }; - AK::Atomic<u8> m_apic_ap_continue { 0 }; + Atomic<u8> m_apic_ap_count { 0 }; + Atomic<u8> m_apic_ap_continue { 0 }; u32 m_processor_cnt { 0 }; u32 m_processor_enabled_cnt { 0 }; APICTimer* m_apic_timer { nullptr }; |