1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:27:35 +00:00

UserspaceEmulator: Add support for fchown

This commit is contained in:
AnotherTest 2020-10-24 11:24:50 +03:30 committed by Andreas Kling
parent 41aa78f6de
commit 617c5ba045
2 changed files with 8 additions and 0 deletions

View file

@ -122,6 +122,7 @@ private:
int virt$dbgputch(char);
int virt$chmod(FlatPtr, size_t, mode_t);
int virt$fchmod(int, mode_t);
int virt$fchown(int, uid_t, gid_t);
int virt$listen(int, int);
int virt$kill(pid_t, int);
int virt$fstat(int, FlatPtr);