]> Cypherpunks repositories - gostls13.git/commitdiff
internal/poll: add AIX operating system
authorClément Chigot <clement.chigot@atos.net>
Fri, 28 Sep 2018 13:13:01 +0000 (15:13 +0200)
committerIan Lance Taylor <iant@golang.org>
Wed, 3 Oct 2018 21:15:18 +0000 (21:15 +0000)
This commit adds AIX operating system to internal/poll package for ppc64
architecture.

Updates: #25893

Change-Id: I9b1da9255012de58f16547c1b18f8840485da170
Reviewed-on: https://go-review.googlesource.com/c/138717
Run-TryBot: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
src/internal/poll/export_posix_test.go
src/internal/poll/fd_poll_runtime.go
src/internal/poll/fd_posix.go
src/internal/poll/fd_posix_test.go
src/internal/poll/fd_unix.go
src/internal/poll/hook_unix.go
src/internal/poll/sockopt.go
src/internal/poll/sockopt_unix.go
src/internal/poll/sockoptip.go
src/internal/poll/sys_cloexec.go

index 73b2c11e1e0994f2075b3d0eae631bfb4cfae925..6b9bb8b7d0dfd44e204cb1a3f9c1a87d660c6505 100644 (file)
@@ -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 nacl netbsd openbsd solaris windows
+// +build aix darwin dragonfly freebsd linux nacl netbsd openbsd solaris windows
 
 // Export guts for testing on posix.
 // Since testing imports os and os imports internal/poll,
index 87a01a8b69937d71f8964d0b3e7a4dee25a34055..b91cbe40e487e991e05846b4f0b31d4606e3f95c 100644 (file)
@@ -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 windows solaris
+// +build aix darwin dragonfly freebsd linux netbsd openbsd windows solaris
 
 package poll
 
index f899a74876d377ef1ad99044a27536dcb32cb414..b43ad51799640c31628c21702ae050c0cd6d994a 100644 (file)
@@ -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 js,wasm linux nacl netbsd openbsd solaris windows
+// +build aix darwin dragonfly freebsd js,wasm linux nacl netbsd openbsd solaris windows
 
 package poll
 
index cbe015edbd1205aec6ab2973f6144ee902669c3d..246d4989e1cf83a315a626060e0a3a840dcad7a4 100644 (file)
@@ -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 nacl netbsd openbsd solaris windows
+// +build aix darwin dragonfly freebsd linux nacl netbsd openbsd solaris windows
 
 package poll_test
 
index b311049ad701cc298112549f69c546f4edb04851..21966ad466798c38fe570a22d77029a1e46a7f8d 100644 (file)
@@ -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 js,wasm linux nacl netbsd openbsd solaris
+// +build aix darwin dragonfly freebsd js,wasm linux nacl netbsd openbsd solaris
 
 package poll
 
index c2ad17eb1ad8d63e205b1a21bb35a42fc2e5c19b..a7512b1255f6fc984388f69a4caf3fd5222c21e4 100644 (file)
@@ -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 js,wasm linux nacl netbsd openbsd solaris
+// +build aix darwin dragonfly freebsd js,wasm linux nacl netbsd openbsd solaris
 
 package poll
 
index f86ce707a123aef486af92d3e908344a5ca4ed07..bb5ea02c0a658897530e9f52b87c4cd867d5d604 100644 (file)
@@ -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 windows
+// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris windows
 
 package poll
 
index b33644db762c32c4c83dc762ccb282aa3da514cd..bd942c293456f0607358acadf4cb201be188caf3 100644 (file)
@@ -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 poll
 
index 1ee490c257876f78b6ad32b0b0734f5edeb3d425..c55a1e3c5b19c1127b5b09fc9abdb9db93ed715a 100644 (file)
@@ -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 windows
+// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris windows
 
 package poll
 
index 7bafa0d81a1c43c4fa291bc55d50e98fb70deba4..64e46127d4502bf8f69bcca39f0b8dbc3107edea 100644 (file)
@@ -5,7 +5,7 @@
 // This file implements sysSocket and accept for platforms that do not
 // provide a fast path for setting SetNonblock and CloseOnExec.
 
-// +build darwin js,wasm nacl solaris
+// +build aix darwin js,wasm nacl solaris
 
 package poll