diff options
Diffstat (limited to 'libpthread')
-rw-r--r-- | libpthread/linuxthreads/wrapsyscall.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libpthread/linuxthreads/wrapsyscall.c b/libpthread/linuxthreads/wrapsyscall.c index ca046a442..2386bfdef 100644 --- a/libpthread/linuxthreads/wrapsyscall.c +++ b/libpthread/linuxthreads/wrapsyscall.c @@ -192,6 +192,13 @@ CANCELABLE_SYSCALL (int, accept, (int fd, __SOCKADDR_ARG addr, socklen_t *addr_len), (fd, addr, addr_len)) +#if defined __UCLIBC_LINUX_SPECIFIC__ +/* accept4(2). */ +CANCELABLE_SYSCALL (int, accept4, (int fd, __SOCKADDR_ARG addr, + socklen_t *addr_len, int flags), + (fd, addr, addr_len, flags)) +#endif + /* connect(2). */ CANCELABLE_SYSCALL (int, connect, (int fd, __CONST_SOCKADDR_ARG addr, socklen_t len), |