mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-03 08:08:43 +00:00
Kernel+LibC+LibCore+UserspaceEmulator: Implement faccessat(2)
Co-Authored-By: Daniel Bertalan <dani@danielbertalan.dev>
This commit is contained in:
parent
fa692e13f9
commit
2a502fe232
Notes:
sideshowbarker
2024-07-17 06:09:44 +09:00
Author: https://github.com/sin-ack
Commit: 2a502fe232
Pull-request: https://github.com/SerenityOS/serenity/pull/15428
Reviewed-by: https://github.com/ADKaster ✅
Reviewed-by: https://github.com/AtkinsSJ
Reviewed-by: https://github.com/BertalanD
Reviewed-by: https://github.com/linusg
Reviewed-by: https://github.com/timschumi
13 changed files with 89 additions and 39 deletions
|
@ -144,7 +144,6 @@ private:
|
|||
void emit_profile_event(AK::OutputStream&, StringView event_name, DeprecatedString const& contents);
|
||||
|
||||
int virt$accept4(FlatPtr);
|
||||
int virt$access(FlatPtr, size_t, int);
|
||||
u32 virt$allocate_tls(FlatPtr, size_t);
|
||||
int virt$anon_create(size_t, int);
|
||||
int virt$beep();
|
||||
|
@ -164,6 +163,7 @@ private:
|
|||
int virt$emuctl(FlatPtr, FlatPtr, FlatPtr);
|
||||
int virt$execve(FlatPtr);
|
||||
void virt$exit(int);
|
||||
int virt$faccessat(FlatPtr);
|
||||
int virt$fchmod(int, mode_t);
|
||||
int virt$fchown(int, uid_t, gid_t);
|
||||
u32 virt$fcntl(int fd, int, u32);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue