aboutsummaryrefslogtreecommitdiff
path: root/src/net/writev_unix.go
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2022-10-03 20:00:43 +0200
committerGopher Robot <gobot@golang.org>2022-10-07 16:48:35 +0000
commitcabf9fe4f2d7e5adfa7007e11f508b111d07a2f6 (patch)
tree36b3aa2b6efda68e273f069701e7548d2291d863 /src/net/writev_unix.go
parentd0b0b10b5cbb28d53403c2bd6af343581327e946 (diff)
downloadgo-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/net/writev_unix.go')
-rw-r--r--src/net/writev_unix.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/writev_unix.go b/src/net/writev_unix.go
index 3318fc5f6f..3b0325bf64 100644
--- a/src/net/writev_unix.go
+++ b/src/net/writev_unix.go
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
+//go:build unix
package net