mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 12:49:19 +00:00
Kernel: Use Userspace<T> for the accept syscall
This commit is contained in:
parent
02660b5d60
commit
8bd9dbc220
Notes:
sideshowbarker
2024-07-19 04:05:07 +09:00
Author: https://github.com/bgianfo
Commit: 8bd9dbc220
Pull-request: https://github.com/SerenityOS/serenity/pull/3062
Reviewed-by: https://github.com/awesomekling
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