go/src/syscall
Brad Fitzpatrick 3813edf26e all: use "reports whether" consistently in the few places that didn't
Go documentation style for boolean funcs is to say:

    // Foo reports whether ...
    func Foo() bool

(rather than "returns true if")

This CL also replaces 4 uses of "iff" with the same "reports whether"
wording, which doesn't lose any meaning, and will prevent people from
sending typo fixes when they don't realize it's "if and only if". In
the past I think we've had the typo CLs updated to just say "reports
whether". So do them all at once.

(Inspired by the addition of another "returns true if" in CL 146938
in fd_plan9.go)

Created with:

$ perl -i -npe 's/returns true if/reports whether/' $(git grep -l "returns true iff" | grep -v vendor)
$ perl -i -npe 's/returns true if/reports whether/' $(git grep -l "returns true if" | grep -v vendor)

Change-Id: Ided502237f5ab0d25cb625dbab12529c361a8b9f
Reviewed-on: https://go-review.googlesource.com/c/147037
Reviewed-by: Ian Lance Taylor <iant@golang.org>
2018-11-02 22:47:58 +00:00
..
js syscall/js: add the Value.Truthy method 2018-10-26 15:12:07 +00:00
asm9_unix1_amd64.s
asm9_unix2_amd64.s
asm_darwin_386.s
asm_darwin_amd64.s syscall: fix typo in RawSyscall6 comment 2018-06-26 14:41:15 +00:00
asm_darwin_arm.s
asm_darwin_arm64.s
asm_freebsd_arm.s
asm_linux_386.s syscall: support syscalls without error return on Linux 2018-02-13 15:57:31 +00:00
asm_linux_amd64.s runtime: rename vdso symbols to use camel case 2018-03-05 19:12:32 +00:00
asm_linux_arm.s syscall: remove/update outdated TODO comments 2018-02-26 17:54:31 +00:00
asm_linux_arm64.s syscall: support syscalls without error return on Linux 2018-02-13 15:57:31 +00:00
asm_linux_mips64x.s syscall: support syscalls without error return on Linux 2018-02-13 15:57:31 +00:00
asm_linux_mipsx.s syscall: support syscalls without error return on Linux 2018-02-13 15:57:31 +00:00
asm_linux_ppc64x.s syscall: support syscalls without error return on Linux 2018-02-13 15:57:31 +00:00
asm_linux_s390x.s syscall: support syscalls without error return on Linux 2018-02-13 15:57:31 +00:00
asm_nacl_386.s all: this big patch remove whitespace from assembly files 2018-10-03 15:28:51 +00:00
asm_nacl_amd64p32.s all: this big patch remove whitespace from assembly files 2018-10-03 15:28:51 +00:00
asm_nacl_arm.s all: this big patch remove whitespace from assembly files 2018-10-03 15:28:51 +00:00
asm_netbsd_arm.s
asm_openbsd_arm.s
asm_plan9_386.s all: this big patch remove whitespace from assembly files 2018-10-03 15:28:51 +00:00
asm_plan9_amd64.s all: this big patch remove whitespace from assembly files 2018-10-03 15:28:51 +00:00
asm_plan9_arm.s syscall: eliminate aliasing of syscall error strings in Plan 9 2018-05-08 14:57:01 +00:00
asm_solaris_amd64.s syscall: change solaris files to libc files 2018-10-10 00:58:17 +00:00
asm_unix_386.s
asm_unix_amd64.s
bpf_bsd.go
const_plan9.go
creds_test.go syscall: drop dummy byte for oob in unixgram SendmsgN 2017-08-29 23:30:21 +00:00
dir_plan9.go
dirent.go syscall: add AIX operating system 2018-10-10 04:29:55 +00:00
dirent_bsd_test.go syscall: correctly pad with NUL in FreeBSD convertFromDirents11 2018-10-12 14:55:06 +00:00
dll_windows.go syscall: add Syscall18 on Windows 2018-11-02 17:53:18 +00:00
endian_big.go
endian_little.go os: add js/wasm architecture 2018-06-01 05:18:38 +00:00
env_plan9.go
env_unix.go syscall: add AIX operating system 2018-10-10 04:29:55 +00:00
env_windows.go all: update comment URLs from HTTP to HTTPS, where possible 2018-06-01 21:52:00 +00:00
errors_plan9.go syscall: define ESPIPE on Plan 9 2017-04-22 13:31:24 +00:00
exec_aix_test.go syscall: add AIX operating system 2018-10-10 04:29:55 +00:00
exec_bsd.go runtime, syscall: reset signal handlers to default in child 2017-06-14 14:00:56 +00:00
exec_libc.go syscall: fix TestForeground for AIX 2018-10-25 16:03:56 +00:00
exec_linux.go syscall: support syscalls without error return on Linux 2018-02-13 15:57:31 +00:00
exec_linux_test.go syscall: skip an unsupported test case on android 2018-08-29 03:58:42 +00:00
exec_plan9.go
exec_solaris_test.go
exec_unix.go syscall: change solaris files to libc files 2018-10-10 00:58:17 +00:00
exec_unix_test.go syscall: add AIX operating system 2018-10-10 04:29:55 +00:00
exec_windows.go all: update comment URLs from HTTP to HTTPS, where possible 2018-06-01 21:52:00 +00:00
export_freebsd_test.go syscall: swap src, dest arguments in convertFromDirents11 for FreeBSD 2018-10-24 15:43:41 +00:00
export_linux_test.go syscall: support syscalls without error return on Linux 2018-02-13 15:57:31 +00:00
export_test.go
export_unix_test.go
fd_nacl.go syscall: partially revert "enable some nacl code to be shared with js/wasm" 2018-05-23 18:54:00 +00:00
flock.go
flock_aix.go syscall: add AIX operating system 2018-10-10 04:29:55 +00:00
flock_linux_32bit.go
forkpipe.go syscall: add AIX operating system 2018-10-10 04:29:55 +00:00
forkpipe2.go Revert "syscall, os: use pipe2 syscall on DragonflyBSD instead of pipe" 2018-08-26 21:30:35 +00:00
fs_js.go syscall: use asynchronous operations on js/wasm 2018-10-04 00:23:03 +00:00
fs_nacl.go os: document that Chown with -1 means to leave values unchanged, like POSIX 2018-04-11 23:06:44 +00:00
lsf_linux.go
mkall.sh syscall: change solaris files to libc files 2018-10-10 00:58:17 +00:00
mkerrors.sh syscall: add AIX operating system 2018-10-10 04:29:55 +00:00
mkpost.go
mksyscall.pl syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
mksyscall_libc.pl syscall: add marker comments to zsyscall_{aix,solaris}_*.go 2018-10-10 18:42:21 +00:00
mksyscall_windows.go all: use "reports whether" consistently in the few places that didn't 2018-11-02 22:47:58 +00:00
mksysctl_openbsd.pl syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
mksysnum_darwin.pl syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
mksysnum_dragonfly.pl syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
mksysnum_freebsd.pl syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
mksysnum_linux.pl syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
mksysnum_netbsd.pl syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
mksysnum_openbsd.pl syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
mksysnum_plan9.sh syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
mmap_unix_test.go syscall: add AIX operating system 2018-10-10 04:29:55 +00:00
msan.go
msan0.go
net.go syscall: add Conn and RawConn interfaces 2017-05-19 09:10:04 +00:00
net_js.go syscall, internal/poll: fix build on js/wasm 2018-06-22 17:58:16 +00:00
net_nacl.go runtime: improve timers scalability on multi-CPU systems 2017-09-12 16:52:23 +00:00
netlink_linux.go
pwd_plan9.go syscall: reduce redundant getwd tracking in Plan 9 2018-02-28 16:26:49 +00:00
route_bsd.go
route_darwin.go
route_dragonfly.go
route_freebsd.go syscall: FreeBSD 12 ino64 support 2018-10-05 21:38:13 +00:00
route_freebsd_32bit.go syscall: FreeBSD 12 ino64 support 2018-10-05 21:38:13 +00:00
route_freebsd_64bit.go
route_netbsd.go
route_openbsd.go
security_windows.go syscall: update TOKEN_ALL_ACCESS according to WinNT.h 2018-06-11 00:45:20 +00:00
setuidgid_32_linux.go syscall: support syscalls without error return on Linux 2018-02-13 15:57:31 +00:00
setuidgid_linux.go syscall: support syscalls without error return on Linux 2018-02-13 15:57:31 +00:00
sockcmsg_linux.go
sockcmsg_unix.go syscall: add AIX operating system 2018-10-10 04:29:55 +00:00
str.go
syscall.go syscall: use deprecation convention in package comment, simplify 2018-08-02 20:32:38 +00:00
syscall_aix.go syscall: fix TestForeground for AIX 2018-10-25 16:03:56 +00:00
syscall_aix_ppc64.go syscall: add AIX operating system 2018-10-10 04:29:55 +00:00
syscall_bsd.go syscall: remove/update outdated TODO comments 2018-02-26 17:54:31 +00:00
syscall_bsd_test.go
syscall_darwin.go internal/poll: use F_FULLFSYNC fcntl for FD.Fsync on OS X 2018-08-22 22:26:40 +00:00
syscall_darwin_386.go
syscall_darwin_amd64.go
syscall_darwin_arm.go
syscall_darwin_arm64.go
syscall_dragonfly.go Revert "syscall, os: use pipe2 syscall on DragonflyBSD instead of pipe" 2018-08-26 21:30:35 +00:00
syscall_dragonfly_amd64.go
syscall_freebsd.go os: add support for long path names on freebsd RemoveAll 2018-11-01 17:08:32 +00:00
syscall_freebsd_386.go
syscall_freebsd_amd64.go
syscall_freebsd_arm.go
syscall_freebsd_test.go syscall: swap src, dest arguments in convertFromDirents11 for FreeBSD 2018-10-24 15:43:41 +00:00
syscall_getwd_bsd.go syscall: support Getwd on all BSDs 2018-02-13 15:41:19 +00:00
syscall_js.go syscall: remove support for O_NONBLOCK and O_SYNC on js/wasm 2018-07-31 17:03:39 +00:00
syscall_linux.go syscall: support Faccessat flags argument 2018-07-27 21:13:43 +00:00
syscall_linux_386.go syscall: replace lstat, lchown, stat to please Android O 2018-09-24 17:08:51 +00:00
syscall_linux_amd64.go syscall: replace lstat, lchown, stat to please Android O 2018-09-24 17:08:51 +00:00
syscall_linux_arm.go syscall: replace lstat, lchown, stat to please Android O 2018-09-24 17:08:51 +00:00
syscall_linux_arm64.go syscall: support Faccessat flags argument 2018-07-27 21:13:43 +00:00
syscall_linux_mips64x.go syscall: support Faccessat flags argument 2018-07-27 21:13:43 +00:00
syscall_linux_mipsx.go syscall: support Faccessat flags argument 2018-07-27 21:13:43 +00:00
syscall_linux_ppc64x.go syscall: correct argument order for SyncFileRange syscall on linux/ppc64{,le} 2018-09-05 10:03:43 +00:00
syscall_linux_s390x.go syscall: support Faccessat flags argument 2018-07-27 21:13:43 +00:00
syscall_linux_test.go syscall: enable TestSyscallNoError on all Linux 32-bit architectures 2018-09-17 16:22:04 +00:00
syscall_nacl.go syscall: make Exit call runtime.exit 2017-09-27 01:10:05 +00:00
syscall_nacl_386.go
syscall_nacl_amd64p32.go
syscall_nacl_arm.go
syscall_netbsd.go syscall: remove/update outdated TODO comments 2018-02-26 17:54:31 +00:00
syscall_netbsd_386.go
syscall_netbsd_amd64.go
syscall_netbsd_arm.go
syscall_openbsd.go os, syscall: use pipe2 instead of pipe syscall on OpenBSD 2018-02-27 18:37:36 +00:00
syscall_openbsd_386.go
syscall_openbsd_amd64.go
syscall_openbsd_arm.go
syscall_plan9.go syscall: reduce redundant getwd tracking in Plan 9 2018-02-28 16:26:49 +00:00
syscall_plan9_test.go syscall: eliminate aliasing of syscall error strings in Plan 9 2018-05-08 14:57:01 +00:00
syscall_solaris.go syscall: support Getwd on all BSDs 2018-02-13 15:41:19 +00:00
syscall_solaris_amd64.go
syscall_test.go all: skip unsupported tests for js/wasm 2018-04-30 19:39:18 +00:00
syscall_unix.go syscall: add AIX operating system 2018-10-10 04:29:55 +00:00
syscall_unix_test.go syscall: add missing err check in test 2017-11-29 15:52:59 +00:00
syscall_windows.go all: fix a bunch of misspellings 2018-10-06 15:40:03 +00:00
syscall_windows_386.go
syscall_windows_amd64.go
syscall_windows_test.go syscall: update TOKEN_ALL_ACCESS according to WinNT.h 2018-06-11 00:45:20 +00:00
tables_nacljs.go os: add js/wasm architecture 2018-06-01 05:18:38 +00:00
time_nacl_386.s
time_nacl_amd64p32.s
time_nacl_arm.s
timestruct.go syscall: add AIX operating system 2018-10-10 04:29:55 +00:00
types_aix.go syscall: fix TestForeground for AIX 2018-10-25 16:03:56 +00:00
types_darwin.go syscall: add utimensat and use it for UtimesNano on BSD and Solaris 2017-08-14 04:14:41 +00:00
types_dragonfly.go syscall: add S_IRWXG and S_IRWXO on DragonflyBSD 2018-08-21 14:08:12 +00:00
types_freebsd.go syscall: FreeBSD 12 ino64 support 2018-10-05 21:38:13 +00:00
types_linux.go syscall: use private copy of ustat_t on Linux 2018-08-20 08:01:43 +00:00
types_netbsd.go net, internal/poll, net/internal/socktest: set SOCK_{CLOEXEC,NONBLOCK} atomically on NetBSD 2018-02-15 17:07:12 +00:00
types_openbsd.go syscall: add S_IRWXG and S_IRWXO on OpenBSD 2018-08-21 14:08:25 +00:00
types_solaris.go syscall: fix TestForeground for AIX 2018-10-25 16:03:56 +00:00
types_windows.go syscall: implement Unix Socket for Windows 2018-08-28 09:26:45 +00:00
types_windows_386.go syscall: rename ztypes_windows* to types_windows* 2017-11-02 17:09:08 +00:00
types_windows_amd64.go syscall: rename ztypes_windows* to types_windows* 2017-11-02 17:09:08 +00:00
types_windows_arm.go syscall: support windows/arm 2018-08-22 17:16:18 +00:00
unzip_nacl.go
zerrors_aix_ppc64.go syscall: add AIX operating system 2018-10-10 04:29:55 +00:00
zerrors_darwin_386.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_darwin_amd64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_darwin_arm.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_darwin_arm64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_dragonfly_amd64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_freebsd_386.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_freebsd_amd64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_freebsd_arm.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_linux_386.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_linux_amd64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_linux_arm.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_linux_arm64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_linux_mips.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_linux_mips64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_linux_mips64le.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_linux_mipsle.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_linux_ppc64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_linux_ppc64le.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_linux_s390x.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_netbsd_386.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_netbsd_amd64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_netbsd_arm.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_openbsd_386.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_openbsd_amd64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_openbsd_arm.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_solaris_amd64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_windows.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zerrors_windows_386.go
zerrors_windows_amd64.go
zsyscall_aix_ppc64.go syscall: fix TestForeground for AIX 2018-10-25 16:03:56 +00:00
zsyscall_darwin_386.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsyscall_darwin_amd64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsyscall_darwin_arm.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsyscall_darwin_arm64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsyscall_dragonfly_amd64.go Revert "syscall, os: use pipe2 syscall on DragonflyBSD instead of pipe" 2018-08-26 21:30:35 +00:00
zsyscall_freebsd_386.go os: add support for long path names on freebsd RemoveAll 2018-11-01 17:08:32 +00:00
zsyscall_freebsd_amd64.go os: add support for long path names on freebsd RemoveAll 2018-11-01 17:08:32 +00:00
zsyscall_freebsd_arm.go os: add support for long path names on freebsd RemoveAll 2018-11-01 17:08:32 +00:00
zsyscall_linux_386.go syscall: replace lstat, lchown, stat to please Android O 2018-09-24 17:08:51 +00:00
zsyscall_linux_amd64.go syscall: replace lstat, lchown, stat to please Android O 2018-09-24 17:08:51 +00:00
zsyscall_linux_arm.go syscall: replace lstat, lchown, stat to please Android O 2018-09-24 17:08:51 +00:00
zsyscall_linux_arm64.go syscall: support Faccessat flags argument 2018-07-27 21:13:43 +00:00
zsyscall_linux_mips.go syscall: support Faccessat flags argument 2018-07-27 21:13:43 +00:00
zsyscall_linux_mips64.go syscall: support Faccessat flags argument 2018-07-27 21:13:43 +00:00
zsyscall_linux_mips64le.go syscall: support Faccessat flags argument 2018-07-27 21:13:43 +00:00
zsyscall_linux_mipsle.go syscall: support Faccessat flags argument 2018-07-27 21:13:43 +00:00
zsyscall_linux_ppc64.go syscall: correct argument order for SyncFileRange syscall on linux/ppc64{,le} 2018-09-05 10:03:43 +00:00
zsyscall_linux_ppc64le.go syscall: correct argument order for SyncFileRange syscall on linux/ppc64{,le} 2018-09-05 10:03:43 +00:00
zsyscall_linux_s390x.go syscall: support Faccessat flags argument 2018-07-27 21:13:43 +00:00
zsyscall_nacl_386.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsyscall_nacl_amd64p32.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsyscall_nacl_arm.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsyscall_netbsd_386.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsyscall_netbsd_amd64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsyscall_netbsd_arm.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsyscall_openbsd_386.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsyscall_openbsd_amd64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsyscall_openbsd_arm.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsyscall_plan9_386.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsyscall_plan9_amd64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsyscall_plan9_arm.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsyscall_solaris_amd64.go syscall: add marker comments to zsyscall_{aix,solaris}_*.go 2018-10-10 18:42:21 +00:00
zsyscall_windows.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysctl_openbsd.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_darwin_386.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_darwin_amd64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_darwin_arm.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_darwin_arm64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_dragonfly_amd64.go Revert "syscall, os: use pipe2 syscall on DragonflyBSD instead of pipe" 2018-08-26 21:30:35 +00:00
zsysnum_freebsd_386.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_freebsd_amd64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_freebsd_arm.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_linux_386.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_linux_amd64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_linux_arm.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_linux_arm64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_linux_mips.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_linux_mips64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_linux_mips64le.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_linux_mipsle.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_linux_ppc64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_linux_ppc64le.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_linux_s390x.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_netbsd_386.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_netbsd_amd64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_netbsd_arm.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_openbsd_386.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_openbsd_amd64.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_openbsd_arm.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_plan9.go syscall, internal/syscall: follow convention for generated code comment 2018-06-14 13:21:46 +00:00
zsysnum_solaris_amd64.go
zsysnum_windows_386.go
zsysnum_windows_amd64.go
ztypes_aix_ppc64.go syscall: fix TestForeground for AIX 2018-10-25 16:03:56 +00:00
ztypes_darwin_386.go syscall: add utimensat and use it for UtimesNano on BSD and Solaris 2017-08-14 04:14:41 +00:00
ztypes_darwin_amd64.go syscall: add utimensat and use it for UtimesNano on BSD and Solaris 2017-08-14 04:14:41 +00:00
ztypes_darwin_arm.go syscall: add utimensat and use it for UtimesNano on BSD and Solaris 2017-08-14 04:14:41 +00:00
ztypes_darwin_arm64.go syscall: add utimensat and use it for UtimesNano on BSD and Solaris 2017-08-14 04:14:41 +00:00
ztypes_dragonfly_amd64.go syscall: add S_IRWXG and S_IRWXO on DragonflyBSD 2018-08-21 14:08:12 +00:00
ztypes_freebsd_386.go syscall: FreeBSD 12 ino64 support 2018-10-05 21:38:13 +00:00
ztypes_freebsd_amd64.go syscall: FreeBSD 12 ino64 support 2018-10-05 21:38:13 +00:00
ztypes_freebsd_arm.go syscall: FreeBSD 12 ino64 support 2018-10-05 21:38:13 +00:00
ztypes_linux_386.go syscall: check faccessat flags parameter on Linux 2018-06-21 06:47:46 +00:00
ztypes_linux_amd64.go syscall: check faccessat flags parameter on Linux 2018-06-21 06:47:46 +00:00
ztypes_linux_arm.go syscall: check faccessat flags parameter on Linux 2018-06-21 06:47:46 +00:00
ztypes_linux_arm64.go syscall: check faccessat flags parameter on Linux 2018-06-21 06:47:46 +00:00
ztypes_linux_mips.go syscall: check faccessat flags parameter on Linux 2018-06-21 06:47:46 +00:00
ztypes_linux_mips64.go syscall: check faccessat flags parameter on Linux 2018-06-21 06:47:46 +00:00
ztypes_linux_mips64le.go syscall: check faccessat flags parameter on Linux 2018-06-21 06:47:46 +00:00
ztypes_linux_mipsle.go syscall: check faccessat flags parameter on Linux 2018-06-21 06:47:46 +00:00
ztypes_linux_ppc64.go syscall: check faccessat flags parameter on Linux 2018-06-21 06:47:46 +00:00
ztypes_linux_ppc64le.go syscall: check faccessat flags parameter on Linux 2018-06-21 06:47:46 +00:00
ztypes_linux_s390x.go syscall: check faccessat flags parameter on Linux 2018-06-21 06:47:46 +00:00
ztypes_netbsd_386.go net, internal/poll, net/internal/socktest: set SOCK_{CLOEXEC,NONBLOCK} atomically on NetBSD 2018-02-15 17:07:12 +00:00
ztypes_netbsd_amd64.go net, internal/poll, net/internal/socktest: set SOCK_{CLOEXEC,NONBLOCK} atomically on NetBSD 2018-02-15 17:07:12 +00:00
ztypes_netbsd_arm.go net, internal/poll, net/internal/socktest: set SOCK_{CLOEXEC,NONBLOCK} atomically on NetBSD 2018-02-15 17:07:12 +00:00
ztypes_openbsd_386.go syscall: add S_IRWXG and S_IRWXO on OpenBSD 2018-08-21 14:08:25 +00:00
ztypes_openbsd_amd64.go syscall: add S_IRWXG and S_IRWXO on OpenBSD 2018-08-21 14:08:25 +00:00
ztypes_openbsd_arm.go syscall: add S_IRWXG and S_IRWXO on OpenBSD 2018-08-21 14:08:25 +00:00
ztypes_solaris_amd64.go syscall: fix TestForeground for AIX 2018-10-25 16:03:56 +00:00