blob: 5fcdc0b11fcf895c19fb4485fbd7578da88909d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* ISC license. */
#include <sys/uio.h>
#include <unistd.h>
#include <skalibs/allreadwrite.h>
#include <skalibs/siovec.h>
#include <skalibs/djbunix.h>
#include <skalibs/unix-transactional.h>
size_t openwritevnclose_at (int dirfd, char const *file, struct iovec const *v, unsigned int n)
{
size_t r ;
int fd = openc_truncatb(dirfd, file) ;
if (fd < 0) return 0 ;
r = allwritev(fd, v, n) ;
if (r >= siovec_len(v, n)) fsync(fd) ;
fd_close(fd) ;
return r ;
}
|