mirror of
https://github.com/ziglang/zig.git
synced 2025-12-19 12:43:13 +00:00
18 lines
432 B
C
Vendored
18 lines
432 B
C
Vendored
#define _GNU_SOURCE
|
|
#include <sys/uio.h>
|
|
#include <unistd.h>
|
|
#include "syscall.h"
|
|
|
|
ssize_t pwritev2(int fd, const struct iovec *iov, int count, off_t ofs, int flags)
|
|
{
|
|
#ifdef SYS_pwritev
|
|
if (!flags) {
|
|
if (ofs==-1) return writev(fd, iov, count);
|
|
return syscall_cp(SYS_pwritev, fd, iov, count,
|
|
(long)(ofs), (long)(ofs>>32));
|
|
}
|
|
#endif
|
|
return syscall_cp(SYS_pwritev2, fd, iov, count,
|
|
(long)(ofs), (long)(ofs>>32), flags);
|
|
}
|