diff options
author | Clément Chigot <clement.chigot@atos.net> | 2018-09-28 15:29:58 +0200 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2018-10-10 04:29:55 +0000 |
commit | 8f9902da269c08ad9a741d828d7f6781f56a7a42 (patch) | |
tree | 8ec446fcaa96969b155cc22d45183b397da775f6 /src/syscall/mmap_unix_test.go | |
parent | c870d56f98eab5370726afd223fe0ab14d9e88ab (diff) | |
download | go-git-8f9902da269c08ad9a741d828d7f6781f56a7a42.tar.gz |
syscall: add AIX operating system
This commit adds AIX operating system to syscall package for ppc64
architecture.
It also adds the file syscall_aix.go in the runtime package for
syscalls needed during fork and exec.
Updates: #25893
Change-Id: I301b1051b178a3efb7bbc39cdbd8e00b594d65ef
Reviewed-on: https://go-review.googlesource.com/c/138720
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/syscall/mmap_unix_test.go')
-rw-r--r-- | src/syscall/mmap_unix_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syscall/mmap_unix_test.go b/src/syscall/mmap_unix_test.go index 01f7783022..d0b3644b59 100644 --- a/src/syscall/mmap_unix_test.go +++ b/src/syscall/mmap_unix_test.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 +// +build aix darwin dragonfly freebsd linux netbsd openbsd package syscall_test |