cleanup socketcall syscall interface to ease porting to sane(r) archs

This commit is contained in:
Rich Felker
2011-02-15 04:40:40 -05:00
parent cfe373146d
commit 03a2f3e48c
21 changed files with 45 additions and 94 deletions

View 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;
}