aboutsummaryrefslogtreecommitdiff
path: root/src/syscall
AgeCommit message (Expand)Author
2021-11-02syscall: fix finalizer fd close bugs in TestFcntlFlock and TestPassFDMichael Anthony Knyszek
2021-11-02syscall: remove GOMAXPROCS change in TestExecHelperMichael Anthony Knyszek
2021-11-02runtime, syscall: add calls to asan functionsfanzha02
2021-11-02syscall,internal/poll: copy arrays by assignment instead of loopingJosh Bleecher Snyder
2021-10-28all: manual fixups for //go:build vs // +buildRuss Cox
2021-10-28all: go fix -fix=buildtag std cmd (except for bootstrap deps, vendor)Russ Cox
2021-10-27syscall: use dup3 in forkAndExecInChild on NetBSDTobias Klauser
2021-10-26syscall: add utimensat libc wrapper on darwinTobias Klauser
2021-10-26syscall: use fcntl F_DUP2FD_CLOEXEC in forkAndExecInChild on illumosTobias Klauser
2021-10-18syscall/js: remove Wrapper interfaceRichard Musiol
2021-10-14syscall: use fcntl with F_DUP2FD_CLOEXEC in forkAndExecInChild on FreeBSDTobias Klauser
2021-10-14syscall: add support for SysProcAttr.Pdeathsig on FreeBSDTobias Klauser
2021-10-14syscall: separate ProcSysAttr and forkAndExecInChild for FreeBSDTobias Klauser
2021-10-06all: use bytes.Cut, strings.CutRuss Cox
2021-09-17syscall: implement Pipe using pipe2 syscall on all linux platformsTobias Klauser
2021-09-17syscall: remove //sysnb comment generating Setreuid for linux/arm64Tobias Klauser
2021-09-17syscall: do not use handle lists on windows when NoInheritHandles is trueJason A. Donenfeld
2021-09-14syscall: remove use of IN_KUBERNETES in testTobias Klauser
2021-09-09syscall: drop fallback to pipe in Pipe on linux/armTobias Klauser
2021-09-06syscall: use dup3 in forkAndExecInChild1 on all Linux platformsTobias Klauser
2021-09-02syscall: drop fallback to accept in Accept on LinuxTobias Klauser
2021-09-02syscall: drop fallback to utimes in UtimesNano on LinuxTobias Klauser
2021-09-02os, syscall: remove fallback to pipe syscall on LinuxTobias Klauser
2021-08-19syscall: add SyscallNChangkun Ou
2021-08-16net: reduce allocations for UDP send/recv on WindowsJosh Bleecher Snyder
2021-08-16net: reduce allocation size in ReadFromUDPJosh Bleecher Snyder
2021-08-16net: remove allocation from UDPConn.WriteToJosh Bleecher Snyder
2021-08-16syscall: hoist Getsockname out of NetlinkRIB loopsMatt Layher
2021-08-16syscall: use correct type for TIOCSPGRP/TIOCGPGRPJoel Sing
2021-08-13all: gofmt more (but vendor, testdata, and top-level test directories)Dmitri Shuralyov
2021-06-16syscall: fix TestGroupCleanupUserNamespace test failure on FedoraRahul Bajaj
2021-06-15syscall: disable c-shared test when no cgo, for windows/armJason A. Donenfeld
2021-06-15syscall: rewrite handle inheritance test to use C rather than PowershellJason A. Donenfeld
2021-06-11syscall: do not load native libraries on non-native powershell on armJason A. Donenfeld
2021-06-04syscall: regenerate zsyscall_windows.goBryan C. Mills
2021-06-04syscall: do not pass console handles to PROC_THREAD_ATTRIBUTE_HANDLE_LIST on ...Jason A. Donenfeld
2021-05-20syscall: document NewCallback and NewCallbackCDecl limitationsMichael Anthony Knyszek
2021-05-17syscall: some containers may fail syscall.TestSetuidEtcAndrew G. Morgan
2021-05-11runtime,syscall: simplify openbsd related build tagsJoel Sing
2021-05-09runtime,syscall: convert syscall on openbsd/arm to libcJoel Sing
2021-05-08syscall: do not change stdio handle inheritanceAlex Brainman
2021-05-04syscall: add //go:build lines to assembly filesTobias Klauser
2021-05-04os, syscall: use wait6 to avoid wait/kill race on netbsdTobias Klauser
2021-05-02os, syscall: use wait6 to avoid wait/kill race on dragonflyTobias Klauser
2021-05-02syscall: add //go:build lines to files generated with with mksyscall_libc.plTobias Klauser
2021-04-30runtime,syscall: convert syscall on openbsd/386 to libcJoel Sing
2021-04-27syscall: move TestForegroundSignal create call out of goroutineIan Lance Taylor
2021-04-27syscall: restore nosplit for ptrace1 on DarwinCherry Zhang
2021-04-27syscall: restore signal mask after setting foreground process groupIan Lance Taylor
2021-04-26syscall: on linux use accept4 in Accept, fall back to acceptTobias Klauser