mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:58:11 +00:00
Kernel: Use Userspace<T> for the bind syscall, and implementation
This commit is contained in:
parent
2bac7190c8
commit
02660b5d60
7 changed files with 7 additions and 7 deletions
|
@ -291,7 +291,7 @@ public:
|
|||
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);
|
||||
int sys$bind(int sockfd, Userspace<const sockaddr*> addr, socklen_t);
|
||||
int sys$listen(int sockfd, int backlog);
|
||||
int sys$accept(int sockfd, sockaddr*, socklen_t*);
|
||||
int sys$connect(int sockfd, const sockaddr*, socklen_t);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue