Kernel: Use Userspace<T> for the chown syscall

This commit is contained in:
Brian Gianforcaro 2020-08-06 20:52:24 -07:00 committed by Andreas Kling
commit 0db669a9d2
Notes: sideshowbarker 2024-07-19 04:10:06 +09:00
2 changed files with 2 additions and 2 deletions

View file

@ -285,7 +285,7 @@ public:
int sys$umount(const char* mountpoint, size_t mountpoint_length);
int sys$chmod(const char* pathname, size_t path_length, mode_t);
int sys$fchmod(int fd, mode_t);
int sys$chown(const Syscall::SC_chown_params*);
int sys$chown(Userspace<const Syscall::SC_chown_params*>);
int sys$fchown(int fd, uid_t, gid_t);
int sys$socket(int domain, int type, int protocol);
int sys$bind(int sockfd, const sockaddr* addr, socklen_t);