mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-10 18:10:56 +09:00
Kernel: Use Userspace<T> for the getpeername syscall
This commit is contained in:
parent
0db669a9d2
commit
dc75ea9fc2
Notes:
sideshowbarker
2024-07-19 04:10:02 +09:00
Author: https://github.com/bgianfo
Commit: dc75ea9fc2
Pull-request: https://github.com/SerenityOS/serenity/pull/3039
3 changed files with 11 additions and 4 deletions
|
@ -326,8 +326,8 @@ struct SC_getsockname_params {
|
|||
|
||||
struct SC_getpeername_params {
|
||||
int sockfd;
|
||||
sockaddr* addr;
|
||||
socklen_t* addrlen;
|
||||
Userspace<sockaddr*> addr;
|
||||
Userspace<socklen_t*> addrlen;
|
||||
};
|
||||
|
||||
struct SC_futex_params {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue