Kernel: Move SpinLock.h into Locking/

This commit is contained in:
Jean-Baptiste Boric 2021-07-18 09:15:52 +02:00 committed by Andreas Kling
parent f7f794e74a
commit 2c3b0baf76
Notes: sideshowbarker 2024-07-18 07:20:56 +09:00
23 changed files with 22 additions and 22 deletions

View file

@ -12,11 +12,11 @@
#include <AK/Types.h>
#include <Kernel/ACPI/Definitions.h>
#include <Kernel/Bus/PCI/Access.h>
#include <Kernel/Locking/SpinLock.h>
#include <Kernel/Memory/AnonymousVMObject.h>
#include <Kernel/Memory/PhysicalRegion.h>
#include <Kernel/Memory/Region.h>
#include <Kernel/Memory/VMObject.h>
#include <Kernel/SpinLock.h>
namespace Kernel {
namespace PCI {

View file

@ -7,8 +7,8 @@
#include <AK/Singleton.h>
#include <Kernel/ConsoleDevice.h>
#include <Kernel/IO.h>
#include <Kernel/Locking/SpinLock.h>
#include <Kernel/Sections.h>
#include <Kernel/SpinLock.h>
#include <Kernel/kstdio.h>
// Output bytes to kernel debug port 0xE9 (Bochs console). It's very handy.

View file

@ -14,10 +14,10 @@
#include <Kernel/FileSystem/FileDescription.h>
#include <Kernel/FileSystem/VirtualFileSystem.h>
#include <Kernel/KLexicalPath.h>
#include <Kernel/Locking/SpinLock.h>
#include <Kernel/Memory/ProcessPagingScope.h>
#include <Kernel/Process.h>
#include <Kernel/RTC.h>
#include <Kernel/SpinLock.h>
#include <LibC/elf.h>
#include <LibELF/CoreDump.h>

View file

@ -15,7 +15,7 @@
#include <Kernel/API/KeyCode.h>
#include <Kernel/API/MousePacket.h>
#include <Kernel/KResult.h>
#include <Kernel/SpinLock.h>
#include <Kernel/Locking/SpinLock.h>
#include <Kernel/UnixTypes.h>
#include <LibKeyboard/CharacterMap.h>

View file

@ -9,7 +9,7 @@
#include <AK/RefCounted.h>
#include <Kernel/Devices/HID/KeyboardDevice.h>
#include <Kernel/Devices/HID/MouseDevice.h>
#include <Kernel/SpinLock.h>
#include <Kernel/Locking/SpinLock.h>
namespace Kernel {

View file

@ -6,8 +6,8 @@
#pragma once
#include <Kernel/Locking/SpinLock.h>
#include <Kernel/Memory/AnonymousVMObject.h>
#include <Kernel/SpinLock.h>
namespace Kernel {

View file

@ -8,8 +8,8 @@
#include <AK/Atomic.h>
#include <AK/RefCounted.h>
#include <Kernel/Locking/SpinLock.h>
#include <Kernel/Memory/VMObject.h>
#include <Kernel/SpinLock.h>
#include <Kernel/Thread.h>
namespace Kernel {

View file

@ -9,7 +9,7 @@
#include <AK/RefCounted.h>
#include <AK/Types.h>
#include <Kernel/Graphics/Console/VGAConsole.h>
#include <Kernel/SpinLock.h>
#include <Kernel/Locking/SpinLock.h>
namespace Kernel::Graphics {
class TextModeConsole final : public VGAConsole {

View file

@ -11,9 +11,9 @@
#include <AK/Types.h>
#include <Kernel/Devices/BlockDevice.h>
#include <Kernel/Graphics/GraphicsDevice.h>
#include <Kernel/Locking/SpinLock.h>
#include <Kernel/Memory/AnonymousVMObject.h>
#include <Kernel/PhysicalAddress.h>
#include <Kernel/SpinLock.h>
namespace Kernel {

View file

@ -16,11 +16,11 @@
#include <Kernel/Heap/Heap.h>
#include <Kernel/Heap/kmalloc.h>
#include <Kernel/KSyms.h>
#include <Kernel/Locking/SpinLock.h>
#include <Kernel/Memory/MemoryManager.h>
#include <Kernel/Panic.h>
#include <Kernel/PerformanceManager.h>
#include <Kernel/Sections.h>
#include <Kernel/SpinLock.h>
#include <Kernel/StdLib.h>
#define CHUNK_SIZE 32

View file

@ -10,7 +10,7 @@
#include <Kernel/Debug.h>
#include <Kernel/KSyms.h>
#include <Kernel/Locking/Mutex.h>
#include <Kernel/SpinLock.h>
#include <Kernel/Locking/SpinLock.h>
#include <Kernel/Thread.h>
namespace Kernel {

View file

@ -5,13 +5,13 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <Kernel/Locking/SpinLock.h>
#include <Kernel/Memory/AddressSpace.h>
#include <Kernel/Memory/AnonymousVMObject.h>
#include <Kernel/Memory/InodeVMObject.h>
#include <Kernel/Memory/MemoryManager.h>
#include <Kernel/PerformanceManager.h>
#include <Kernel/Process.h>
#include <Kernel/SpinLock.h>
namespace Kernel::Memory {

View file

@ -14,12 +14,12 @@
#include <Kernel/Arch/x86/PageFault.h>
#include <Kernel/Arch/x86/TrapFrame.h>
#include <Kernel/Forward.h>
#include <Kernel/Locking/SpinLock.h>
#include <Kernel/Memory/AllocationStrategy.h>
#include <Kernel/Memory/PhysicalPage.h>
#include <Kernel/Memory/PhysicalRegion.h>
#include <Kernel/Memory/Region.h>
#include <Kernel/Memory/VMObject.h>
#include <Kernel/SpinLock.h>
namespace Kernel::Memory {

View file

@ -8,8 +8,8 @@
#include <AK/RedBlackTree.h>
#include <AK/Traits.h>
#include <Kernel/Locking/SpinLock.h>
#include <Kernel/Memory/VirtualRange.h>
#include <Kernel/SpinLock.h>
namespace Kernel::Memory {

View file

@ -9,7 +9,7 @@
#include <AK/IntrusiveList.h>
#include <AK/RefCounted.h>
#include <AK/Weakable.h>
#include <Kernel/SpinLock.h>
#include <Kernel/Locking/SpinLock.h>
#include <Kernel/UnixTypes.h>
namespace Kernel {

View file

@ -11,7 +11,7 @@
#include <AK/IntrusiveList.h>
#include <AK/Types.h>
#include <Kernel/Forward.h>
#include <Kernel/SpinLock.h>
#include <Kernel/Locking/SpinLock.h>
#include <Kernel/Time/TimeManagement.h>
#include <Kernel/UnixTypes.h>

View file

@ -8,10 +8,10 @@
// please look at Documentation/Kernel/AHCILocking.md
#include <AK/Atomic.h>
#include <Kernel/Locking/SpinLock.h>
#include <Kernel/Memory/MemoryManager.h>
#include <Kernel/Memory/ScatterGatherList.h>
#include <Kernel/Memory/TypedMapping.h>
#include <Kernel/SpinLock.h>
#include <Kernel/Storage/AHCIPort.h>
#include <Kernel/Storage/ATA.h>
#include <Kernel/Storage/SATADiskDevice.h>

View file

@ -12,13 +12,13 @@
#include <Kernel/IO.h>
#include <Kernel/Interrupts/IRQHandler.h>
#include <Kernel/Locking/Mutex.h>
#include <Kernel/Locking/SpinLock.h>
#include <Kernel/Memory/AnonymousVMObject.h>
#include <Kernel/Memory/PhysicalPage.h>
#include <Kernel/Memory/ScatterGatherList.h>
#include <Kernel/PhysicalAddress.h>
#include <Kernel/Random.h>
#include <Kernel/Sections.h>
#include <Kernel/SpinLock.h>
#include <Kernel/Storage/AHCI.h>
#include <Kernel/Storage/AHCIPortHandler.h>
#include <Kernel/Storage/StorageDevice.h>

View file

@ -6,9 +6,9 @@
#pragma once
#include <Kernel/Locking/SpinLock.h>
#include <Kernel/Memory/MemoryManager.h>
#include <Kernel/Memory/ScatterGatherList.h>
#include <Kernel/SpinLock.h>
namespace Kernel {

View file

@ -7,7 +7,7 @@
#pragma once
#include <AK/Atomic.h>
#include <Kernel/SpinLock.h>
#include <Kernel/Locking/SpinLock.h>
#include <Kernel/Thread.h>
namespace Kernel {

View file

@ -4,9 +4,9 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <Kernel/Locking/SpinLock.h>
#include <Kernel/Process.h>
#include <Kernel/Sections.h>
#include <Kernel/SpinLock.h>
#include <Kernel/WaitQueue.h>
#include <Kernel/WorkQueue.h>

View file

@ -10,7 +10,7 @@
#include <Kernel/Devices/PCISerialDevice.h>
#include <Kernel/Graphics/GraphicsManagement.h>
#include <Kernel/IO.h>
#include <Kernel/SpinLock.h>
#include <Kernel/Locking/SpinLock.h>
#include <Kernel/TTY/ConsoleManagement.h>
#include <Kernel/kstdio.h>