mirror of
https://github.com/fluencelabs/musl
synced 2025-06-19 01:41:41 +00:00
cleanup socketcall syscall interface to ease porting to sane(r) archs
This commit is contained in:
@ -1,14 +1,12 @@
|
||||
#include <sys/socket.h>
|
||||
#include "syscall.h"
|
||||
#include "socketcall.h"
|
||||
#include "libc.h"
|
||||
|
||||
int connect(int fd, const struct sockaddr *addr, socklen_t len)
|
||||
{
|
||||
unsigned long args[] = { fd, (unsigned long)addr, len };
|
||||
int ret;
|
||||
CANCELPT_BEGIN;
|
||||
ret = syscall2(__NR_socketcall, SYS_CONNECT, (long)args);
|
||||
ret = socketcall(connect, fd, addr, len, 0, 0, 0);
|
||||
CANCELPT_END;
|
||||
return ret;
|
||||
}
|
||||
|
Reference in New Issue
Block a user