Add chown() syscall and a simple /bin/chown program.

This commit is contained in:
Andreas Kling 2019-02-27 12:32:53 +01:00
commit 1d2529b4a1
Notes: sideshowbarker 2024-07-19 15:36:58 +09:00
19 changed files with 130 additions and 5 deletions

View file

@ -314,3 +314,8 @@ KResult SynthFSInode::chmod(mode_t)
{
return KResult(-EPERM);
}
KResult SynthFSInode::chown(uid_t, gid_t)
{
return KResult(-EPERM);
}