1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:57:45 +00:00

Kernel+LibC: Implement getsockname() syscall.

This commit is contained in:
Andreas Kling 2019-05-19 19:55:27 +02:00
parent 0eb788d641
commit 212a263f0a
6 changed files with 36 additions and 0 deletions

View file

@ -175,6 +175,7 @@ public:
ssize_t sys$recvfrom(const Syscall::SC_recvfrom_params*);
int sys$getsockopt(const Syscall::SC_getsockopt_params*);
int sys$setsockopt(const Syscall::SC_setsockopt_params*);
int sys$getsockname(int sockfd, sockaddr* addr, socklen_t* addrlen);
int sys$restore_signal_mask(dword mask);
int sys$create_thread(int(*)(void*), void*);
void sys$exit_thread(int code);