-
Notifications
You must be signed in to change notification settings - Fork 15.2k
Open
Labels
Description
Described in POSIX: https://pubs.opengroup.org/onlinepubs/9799919799/functions/access.html
The faccessat
function is a syscall wrapper that checks if a file is available.
This will be very similar to the access
syscall wrapper, implemented here:
#elif defined(SYS_faccessat) |
Here's a checklist for what you'll need to do for this:
- Add the implementation of
faccessat
in/src/unistd
- Add tests for
faccessat
in/test/src/unistd
- Add
faccessat
toentrypoints.txt
for at least x86_64 and whatever you're building on - Add
faccessat
toinclude/unistd.yaml
(Reserved for specific assignee)