Skip to content

Commit f89bc7f

Browse files
author
ian
committed
internal,net,os,runtime,syscall: fixes for AIX following update to go1.9
Reviewed-on: https://go-review.googlesource.com/64551 git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@253016 138bc75d-0d04-0410-961f-82ee72b054a4
1 parent df4660d commit f89bc7f

File tree

17 files changed

+155
-20
lines changed

17 files changed

+155
-20
lines changed

gcc/go/gofrontend/MERGE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
5fb74cd7192123a9ea06dcae0d5d8d0b3538db8f
1+
90fe3da36d904b62d47c00ee40eef4fd2693a5da
22

33
The first line of this file holds the git revision number of the last
44
merge done from the gofrontend repository.

libgo/go/cmd/go/internal/base/signal_unix.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
// +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris
5+
// +build aix darwin dragonfly freebsd linux nacl netbsd openbsd solaris
66

77
package base
88

libgo/go/internal/poll/export_posix_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
// +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris windows
5+
// +build aix darwin dragonfly freebsd linux nacl netbsd openbsd solaris windows
66

77
// Export guts for testing on posix.
88
// Since testing imports os and os imports internal/poll,

libgo/go/internal/poll/fd_poll_runtime.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
// +build darwin dragonfly freebsd linux netbsd openbsd windows solaris
5+
// +build aix darwin dragonfly freebsd linux netbsd openbsd windows solaris
66

77
package poll
88

libgo/go/internal/poll/fd_posix.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
// +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris windows
5+
// +build aix darwin dragonfly freebsd linux nacl netbsd openbsd solaris windows
66

77
package poll
88

libgo/go/internal/poll/fd_posix_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
// +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris windows
5+
// +build aix darwin dragonfly freebsd linux nacl netbsd openbsd solaris windows
66

77
package poll_test
88

libgo/go/internal/poll/fd_unix.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
// +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris
5+
// +build aix darwin dragonfly freebsd linux nacl netbsd openbsd solaris
66

77
package poll
88

libgo/go/internal/poll/hook_unix.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
// +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris
5+
// +build aix darwin dragonfly freebsd linux nacl netbsd openbsd solaris
66

77
package poll
88

libgo/go/internal/poll/sockopt.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
// +build darwin dragonfly freebsd linux netbsd openbsd solaris windows
5+
// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris windows
66

77
package poll
88

libgo/go/internal/poll/sockoptip.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
// +build darwin dragonfly freebsd linux netbsd openbsd windows
5+
// +build aix darwin dragonfly freebsd linux netbsd openbsd windows
66

77
package poll
88

0 commit comments

Comments
 (0)