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
324 B
15 lines
324 B
|
15 years ago
|
#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;
|
||
|
|
}
|