blob: ea2fe48206d810183f2633bb9fcf3ef671393c93 (
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 sendmsg(int fd, const struct msghdr *msg, int flags)
{
unsigned long args[] = { fd, (unsigned long)msg, flags };
ssize_t r;
CANCELPT_BEGIN;
r = syscall2(__NR_socketcall, SYS_SENDMSG, (long)args);
CANCELPT_END;
return r;
}
|