don't trust siginfo in rsyscall handler
[musl] / src / network / accept.c
index 8370409..46adff5 100644 (file)
@@ -1,14 +1,12 @@
 #include <sys/socket.h>
 #include "syscall.h"
-#include "socketcall.h"
 #include "libc.h"
 
 int accept(int fd, struct sockaddr *addr, socklen_t *len)
 {
-       unsigned long args[] = { fd, (unsigned long)addr, (unsigned long)len };
        int ret;
        CANCELPT_BEGIN;
-       ret = syscall2(__NR_socketcall, SYS_ACCEPT, (long)args);
+       ret = socketcall(accept, fd, addr, len, 0, 0, 0);
        CANCELPT_END;
        return ret;
 }