sing/common/rw/writev_posix.go
2022-08-12 16:21:20 +08:00

31 lines
545 B
Go

//go:build !windows
package rw
import (
"syscall"
"unsafe"
)
// Deprecated: use vectorised writer
func WriteV(fd uintptr, data [][]byte) (int, error) {
iovecs := make([]syscall.Iovec, len(data))
for i := range iovecs {
iovecs[i].Base = &data[i][0]
iovecs[i].SetLen(len(data[i]))
}
var (
r uintptr
e syscall.Errno
)
for {
r, _, e = syscall.Syscall(syscall.SYS_WRITEV, fd, uintptr(unsafe.Pointer(&iovecs[0])), uintptr(len(iovecs)))
if e != syscall.EINTR {
break
}
}
if e != 0 {
return 0, e
}
return int(r), nil
}