mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 09:58:11 +00:00
Kernel: Replace "folder" => "directory" everywhere
Folders are a GUI concept. File systems have directories.
This commit is contained in:
parent
22611ca136
commit
2da0581fd2
15 changed files with 246 additions and 246 deletions
|
@ -32,12 +32,12 @@ public:
|
|||
SysFSComponentRegistry();
|
||||
void register_new_component(SysFSComponent&);
|
||||
|
||||
SysFSDirectory& root_folder() { return m_root_folder; }
|
||||
SysFSDirectory& root_directory() { return m_root_directory; }
|
||||
Mutex& get_lock() { return m_lock; }
|
||||
|
||||
private:
|
||||
Mutex m_lock;
|
||||
NonnullRefPtr<SysFSRootDirectory> m_root_folder;
|
||||
NonnullRefPtr<SysFSRootDirectory> m_root_directory;
|
||||
};
|
||||
|
||||
class SysFS final : public FileSystem {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue