search for: d0ba9eb

Displaying 1 result from an estimated 1 matches for "d0ba9eb".

2016 Jan 06
0
[klibc:master] Add accept4(), handle fallback from accept () to accept4()
...+ usr/klibc/Kbuild | 2 +- usr/klibc/SOCKETCALLS.def | 1 + usr/klibc/accept.c | 16 ++++++++++++++++ usr/klibc/socketcalls.pl | 15 +++++++++++++-- 5 files changed, 32 insertions(+), 3 deletions(-) diff --git a/usr/include/sys/socket.h b/usr/include/sys/socket.h index 3334212..d0ba9eb 100644 --- a/usr/include/sys/socket.h +++ b/usr/include/sys/socket.h @@ -251,6 +251,7 @@ __extern int bind(int, const struct sockaddr *, int); __extern int connect(int, const struct sockaddr *, socklen_t); __extern int listen(int, int); __extern int accept(int, struct sockaddr *, socklen_t *); +...