mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:17:44 +00:00
Kernel: Switch LockRefPtr<Inode> to RefPtr<Inode>
The main place where this is a little iffy is in RAMFS where inodes have a LockWeakPtr to their parent inode. I've left that as a LockWeakPtr for now.
This commit is contained in:
parent
067d0689c5
commit
e6fc7b3ff7
50 changed files with 143 additions and 144 deletions
|
@ -30,7 +30,7 @@ public:
|
|||
private:
|
||||
RAMFS();
|
||||
|
||||
LockRefPtr<RAMFSInode> m_root_inode;
|
||||
RefPtr<RAMFSInode> m_root_inode;
|
||||
|
||||
// NOTE: We start by assigning InodeIndex of 2, because 0 is invalid and 1
|
||||
// is reserved for the root directory inode.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue