diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-01-17 16:25:02 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-01-17 16:25:02 +0100 |
commit | e9e57c5f65a8545ffd7881a17f9587c2a69b3ecc (patch) | |
tree | 441132dfc9a08838d1fdc55e9771cc74de1065dc /Kernel/IDEDiskDevice.h | |
parent | 133f9aa3522645c35f76496f6b0a1b4951f9afae (diff) | |
download | serenity-e9e57c5f65a8545ffd7881a17f9587c2a69b3ecc.zip |
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.
Diffstat (limited to 'Kernel/IDEDiskDevice.h')
-rw-r--r-- | Kernel/IDEDiskDevice.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 }; |