summaryrefslogtreecommitdiff
path: root/src/network/send.c
blob: d72fb03c01bf4e79204fec6bc1e1fa90134c1007 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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;
}