-
Notifications
You must be signed in to change notification settings - Fork 15.2k
Closed
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
faccessatin/src/unistd - Add tests for
faccessatin/test/src/unistd - Add
faccessattoentrypoints.txtfor at least x86_64 and whatever you're building on - Add
faccessattoinclude/unistd.yaml
(Reserved for specific assignee)