]> Cypherpunks repositories - gostls13.git/commit
syscall: add AIX operating system
authorClément Chigot <clement.chigot@atos.net>
Fri, 28 Sep 2018 13:29:58 +0000 (15:29 +0200)
committerIan Lance Taylor <iant@golang.org>
Wed, 10 Oct 2018 04:29:55 +0000 (04:29 +0000)
commit8f9902da269c08ad9a741d828d7f6781f56a7a42
tree8ec446fcaa96969b155cc22d45183b397da775f6
parentc870d56f98eab5370726afd223fe0ab14d9e88ab
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>
18 files changed:
src/runtime/syscall_aix.go [new file with mode: 0644]
src/syscall/dirent.go
src/syscall/env_unix.go
src/syscall/exec_aix_test.go [new file with mode: 0644]
src/syscall/exec_unix_test.go
src/syscall/flock_aix.go [new file with mode: 0644]
src/syscall/forkpipe.go
src/syscall/mkerrors.sh
src/syscall/mmap_unix_test.go
src/syscall/sockcmsg_unix.go
src/syscall/syscall_aix.go [new file with mode: 0644]
src/syscall/syscall_aix_ppc64.go [new file with mode: 0644]
src/syscall/syscall_unix.go
src/syscall/timestruct.go
src/syscall/types_aix.go [new file with mode: 0644]
src/syscall/zerrors_aix_ppc64.go [new file with mode: 0644]
src/syscall/zsyscall_aix_ppc64.go [new file with mode: 0644]
src/syscall/ztypes_aix_ppc64.go [new file with mode: 0644]