Kernel/LibC: Implement creat with open

This allows getting rid of unnecessary SYS_CREATE. Directory creation
still has its own syscall, but I could combine it with SYS_OPEN also.
This commit is contained in:
2024-09-17 15:55:53 +03:00
parent d4ea720239
commit d88ee5c9ee
4 changed files with 1 additions and 12 deletions

View File

@@ -970,14 +970,6 @@ namespace Kernel
return 0;
}
BAN::ErrorOr<long> Process::sys_create(const char* path, mode_t mode)
{
LockGuard _(m_process_lock);
TRY(validate_string_access(path));
TRY(create_file_or_dir(VirtualFileSystem::get().root_file(), path, mode));
return 0;
}
BAN::ErrorOr<long> Process::sys_create_dir(const char* path, mode_t mode)
{
LockGuard _(m_process_lock);