mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 14:07:46 +00:00
Kernel: Use Userspace<T> for the accept syscall
This commit is contained in:
parent
02660b5d60
commit
8bd9dbc220
2 changed files with 4 additions and 3 deletions
|
@ -293,7 +293,7 @@ public:
|
|||
int sys$socket(int domain, int type, int protocol);
|
||||
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$accept(int sockfd, Userspace<sockaddr*>, Userspace<socklen_t*>);
|
||||
int sys$connect(int sockfd, const sockaddr*, socklen_t);
|
||||
int sys$shutdown(int sockfd, int how);
|
||||
ssize_t sys$sendto(const Syscall::SC_sendto_params*);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue