Remove legacy writev funcs

This commit is contained in:
世界 2023-12-21 21:10:18 +08:00
parent 57b8a4c64a
commit a6e8fa3019
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 0 additions and 50 deletions

View file

@ -1,31 +0,0 @@
//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
}

View file

@ -1,19 +0,0 @@
package rw
import (
"syscall"
)
// Deprecated: use vectorised writer
func WriteV(fd uintptr, data [][]byte) (int, error) {
var n uint32
buffers := make([]*syscall.WSABuf, len(data))
for i, buf := range data {
buffers[i] = &syscall.WSABuf{
Len: uint32(len(buf)),
Buf: &buf[0],
}
}
err := syscall.WSASend(syscall.Handle(fd), buffers[0], uint32(len(buffers)), &n, 0, nil, nil)
return int(n), err
}