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
+1 -7
View File
@@ -1,14 +1,8 @@
#include <sys/socket.h>
#include "syscall.h"
#include "socketcall.h"
#include "libc.h"
ssize_t send(int fd, const void *buf, size_t len, int flags)
{
unsigned long args[] = { fd, (unsigned long)buf, len, flags };
ssize_t r;
CANCELPT_BEGIN;
r = syscall2(__NR_socketcall, SYS_SEND, (long)args);
CANCELPT_END;
return r;
return sendto(fd, buf, len, flags, 0, 0);
}