mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 05:39:11 +00:00
Userland: Allow our access check to pass flags to faccessat syscall
This commit is contained in:
parent
639aee037f
commit
059904371f
Notes:
sideshowbarker
2024-07-18 05:37:06 +09:00
Author: https://github.com/fdellwing
Commit: 059904371f
Pull-request: https://github.com/SerenityOS/serenity/pull/18545
Reviewed-by: https://github.com/ADKaster
Reviewed-by: https://github.com/BenWiederhake
Reviewed-by: https://github.com/LucasChollet
Reviewed-by: https://github.com/kennethmyhra
Reviewed-by: https://github.com/trflynn89
4 changed files with 8 additions and 7 deletions
|
@ -228,7 +228,7 @@ ErrorOr<void> putenv(StringView);
|
|||
ErrorOr<int> posix_openpt(int flags);
|
||||
ErrorOr<void> grantpt(int fildes);
|
||||
ErrorOr<void> unlockpt(int fildes);
|
||||
ErrorOr<void> access(StringView pathname, int mode);
|
||||
ErrorOr<void> access(StringView pathname, int mode, int flags = 0);
|
||||
ErrorOr<DeprecatedString> readlink(StringView pathname);
|
||||
ErrorOr<int> poll(Span<struct pollfd>, int timeout);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue