From e9e57c5f65a8545ffd7881a17f9587c2a69b3ecc Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 17 Jan 2019 16:25:02 +0100 Subject: Rename SpinLock to Lock. It hasn't been a SpinLock for some time. I'm pretty happy with the mechanism of AK::Lock for now. --- Kernel/IDEDiskDevice.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Kernel/IDEDiskDevice.h') diff --git a/Kernel/IDEDiskDevice.h b/Kernel/IDEDiskDevice.h index 1a70ba995b..6db024bb95 100644 --- a/Kernel/IDEDiskDevice.h +++ b/Kernel/IDEDiskDevice.h @@ -37,7 +37,7 @@ private: bool read_sectors(dword start_sector, word count, byte* buffer); bool write_sectors(dword start_sector, word count, const byte* data); - SpinLock m_lock; + Lock m_lock; word m_cylinders { 0 }; word m_heads { 0 }; word m_sectors_per_track { 0 }; -- cgit v1.2.3