1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 18:20:43 +09:00

Kernel: Support Mutex Protected lists in ListedRefCounted

This will allow us to support Mutex Protected lists like the custodies
list as well.
This commit is contained in:
Idan Horowitz 2021-12-29 00:22:14 +02:00 committed by Andreas Kling
parent 7204b292c5
commit be91b4fe3e
Notes: sideshowbarker 2024-07-17 22:01:22 +09:00
4 changed files with 19 additions and 8 deletions

View file

@ -23,7 +23,7 @@
namespace Kernel {
class Inode : public ListedRefCounted<Inode>
class Inode : public ListedRefCounted<Inode, LockType::Spinlock>
, public Weakable<Inode> {
friend class VirtualFileSystem;
friend class FileSystem;