mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 20:29:18 +00:00
Kernel: mkdir() should use the containing directory's FS for inode creation.
This commit is contained in:
parent
33e7df5955
commit
6618411fba
Notes:
sideshowbarker
2024-07-19 15:54:11 +09:00
Author: https://github.com/awesomekling
Commit: 6618411fba
3 changed files with 5 additions and 5 deletions
|
@ -67,7 +67,7 @@ public:
|
|||
RetainPtr<FileDescriptor> open(RetainPtr<CharacterDevice>&&, int& error, int options);
|
||||
RetainPtr<FileDescriptor> open(const String& path, int& error, int options, mode_t mode, InodeIdentifier base = InodeIdentifier());
|
||||
RetainPtr<FileDescriptor> create(const String& path, int& error, int options, mode_t mode, InodeIdentifier base);
|
||||
bool mkdir(const String& path, mode_t mode, InodeIdentifier base, int& error);
|
||||
bool mkdir(const String& path, mode_t mode, Inode& base, int& error);
|
||||
bool unlink(const String& path, Inode& base, int& error);
|
||||
bool rmdir(const String& path, Inode& base, int& error);
|
||||
bool chmod(const String& path, mode_t, Inode& base, int& error);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue