aboutsummaryrefslogtreecommitdiff
path: root/src/syscall/exec_libc2.go
diff options
context:
space:
mode:
authorJoel Sing <joel@sing.id.au>2021-01-27 01:48:47 +1100
committerJoel Sing <joel@sing.id.au>2021-01-28 02:19:23 +0000
commit376518d77fb5d718f90c8b66ea25660aa3734032 (patch)
treef4d34fca0c3be24d14244b099e96c445a991b91a /src/syscall/exec_libc2.go
parent00f2ff5c942e8f3e68cd10b5909278cda15c6bb5 (diff)
downloadgo-376518d77fb5d718f90c8b66ea25660aa3734032.tar.xz
runtime,syscall: convert syscall on openbsd/arm64 to libc
Convert the syscall package on openbsd/arm64 to use libc rather than performing direct system calls. Updates #36435 Change-Id: I7e1da8537cea9ed9bf2676f181e56ae99383333f Reviewed-on: https://go-review.googlesource.com/c/go/+/286815 Trust: Joel Sing <joel@sing.id.au> Reviewed-by: Cherry Zhang <cherryyz@google.com> Run-TryBot: Cherry Zhang <cherryyz@google.com> TryBot-Result: Go Bot <gobot@golang.org>
Diffstat (limited to 'src/syscall/exec_libc2.go')
-rw-r--r--src/syscall/exec_libc2.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syscall/exec_libc2.go b/src/syscall/exec_libc2.go
index 496e7cf4c3..45d3f85baf 100644
--- a/src/syscall/exec_libc2.go
+++ b/src/syscall/exec_libc2.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.
-// +build darwin openbsd,amd64
+// +build darwin openbsd,amd64 openbsd,arm64
package syscall