summaryrefslogtreecommitdiff
path: root/AK/Lock.h
AgeCommit message (Collapse)Author
2018-11-10Merge Disk namespace into the IDEDiskDevice class.Andreas Kling
2018-11-07Make VFS test environment build again.Andreas Kling
2018-10-29Add an inode metadata cache to the ext2fs implementation.Andreas Kling
2018-10-29Fix broken SpinLock.Andreas Kling
The SpinLock was all backwards and didn't actually work. Fixing it exposed how wrong most of the locking here is. I need to come up with a better granularity here.
2018-10-24Add a kmalloc lock. This definitely reduces flakiness.Andreas Kling
2018-10-23Generalize the SpinLock and move it to AK.Andreas Kling
Add a separate lock to protect the VFS. I think this might be a good idea. I'm not sure it's a good approach though. I'll fiddle with it as I go along. It's really fun to figure out all these things on my own.