mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:07:34 +00:00
Kernel: Add fchown() syscall.
This commit is contained in:
parent
51581c21fc
commit
93d3d1ede1
8 changed files with 30 additions and 2 deletions
|
@ -177,6 +177,7 @@ public:
|
|||
int sys$chmod(const char* pathname, mode_t);
|
||||
int sys$fchmod(int fd, mode_t);
|
||||
int sys$chown(const char* pathname, uid_t, gid_t);
|
||||
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);
|
||||
int sys$listen(int sockfd, int backlog);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue