From: Clément Chigot Date: Fri, 28 Sep 2018 13:21:58 +0000 (+0200) Subject: internal/syscall: add AIX operating system X-Git-Tag: go1.12beta1~909 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=86e251c938af90b1f80b41d7ca3713fb46430071;p=gostls13.git internal/syscall: add AIX operating system This commit adds AIX operating system to internal/syscall package for ppc64 architecture. Updates: #25893 Change-Id: I5c3a9d4403ca170a7e894e06e68b83387d09b816 Reviewed-on: https://go-review.googlesource.com/c/138718 Run-TryBot: Ian Lance Taylor TryBot-Result: Gobot Gobot Reviewed-by: Brad Fitzpatrick --- diff --git a/src/internal/syscall/unix/nonblocking.go b/src/internal/syscall/unix/nonblocking.go index 1db3394432..233b6689d1 100644 --- a/src/internal/syscall/unix/nonblocking.go +++ b/src/internal/syscall/unix/nonblocking.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 dragonfly freebsd linux netbsd openbsd solaris +// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris package unix