mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 02:07:35 +00:00
LibCore: Add syscall wrapper for chmod()
This commit is contained in:
parent
294cb3cef4
commit
0d76d15f9d
2 changed files with 17 additions and 0 deletions
|
@ -275,4 +275,20 @@ ErrorOr<void> tcsetattr(int fd, int optional_actions, struct termios const& ios)
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ErrorOr<void> chmod(StringView pathname, mode_t mode)
|
||||||
|
{
|
||||||
|
if (!pathname.characters_without_null_termination())
|
||||||
|
return Error::from_syscall("chmod"sv, -EFAULT);
|
||||||
|
|
||||||
|
#ifdef __serenity__
|
||||||
|
int rc = syscall(SC_chmod, pathname.characters_without_null_termination(), pathname.length(), mode);
|
||||||
|
HANDLE_SYSCALL_RETURN_VALUE("chmod"sv, rc, {});
|
||||||
|
#else
|
||||||
|
String path = pathname;
|
||||||
|
if (::chmod(path.characters(), mode) < 0)
|
||||||
|
return Error::from_syscall("chmod"sv, -errno);
|
||||||
|
return {};
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -41,5 +41,6 @@ ErrorOr<String> gethostname();
|
||||||
ErrorOr<void> ioctl(int fd, unsigned request, ...);
|
ErrorOr<void> ioctl(int fd, unsigned request, ...);
|
||||||
ErrorOr<struct termios> tcgetattr(int fd);
|
ErrorOr<struct termios> tcgetattr(int fd);
|
||||||
ErrorOr<void> tcsetattr(int fd, int optional_actions, struct termios const&);
|
ErrorOr<void> tcsetattr(int fd, int optional_actions, struct termios const&);
|
||||||
|
ErrorOr<void> chmod(StringView pathname, mode_t mode);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue