diff options
| author | Tobias Klauser <tklauser@distanz.ch> | 2022-10-03 20:00:43 +0200 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2022-10-07 16:48:35 +0000 |
| commit | cabf9fe4f2d7e5adfa7007e11f508b111d07a2f6 (patch) | |
| tree | 36b3aa2b6efda68e273f069701e7548d2291d863 /src/syscall/syscall_aix.go | |
| parent | d0b0b10b5cbb28d53403c2bd6af343581327e946 (diff) | |
| download | go-cabf9fe4f2d7e5adfa7007e11f508b111d07a2f6.tar.xz | |
internal/poll, net, syscall: enable writev on aix
aix supports iovec read/write, see
https://www.ibm.com/docs/en/aix/7.2?topic=w-write-writex-write64x-writev-writevx-ewrite-ewritev-pwrite-pwritev-subroutine
Define an unexported writev wrapper in package syscall (like on openbsd
and darwin) and linkname it from internal/poll.
Change-Id: I8f9695ceac72ae861afa3692207c154d86d4e690
Reviewed-on: https://go-review.googlesource.com/c/go/+/435260
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
Reviewed-by: Carlos Amedee <carlos@golang.org>
Reviewed-by: Ian Lance Taylor <iant@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Auto-Submit: Tobias Klauser <tobias.klauser@gmail.com>
Diffstat (limited to 'src/syscall/syscall_aix.go')
| -rw-r--r-- | src/syscall/syscall_aix.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/syscall/syscall_aix.go b/src/syscall/syscall_aix.go index 45a4060f56..807990f3c0 100644 --- a/src/syscall/syscall_aix.go +++ b/src/syscall/syscall_aix.go @@ -642,6 +642,7 @@ func PtraceDetach(pid int) (err error) { return ptrace64(PT_DETACH, int64(pid), //sys Unlink(path string) (err error) //sysnb Uname(buf *Utsname) (err error) //sys write(fd int, p []byte) (n int, err error) +//sys writev(fd int, iovecs []Iovec) (n uintptr, err error) //sys gettimeofday(tv *Timeval, tzp *Timezone) (err error) |
