mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
326 B
15 lines
326 B
|
15 years ago
|
#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;
|
||
|
|
}
|