mirror of
https://github.com/fluencelabs/musl
synced 2025-06-07 20:11:49 +00:00
15 lines
324 B
C
15 lines
324 B
C
|
#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;
|
||
|
}
|