aboutsummaryrefslogtreecommitdiff
path: root/src/syscall
AgeCommit message (Expand)Author
2022-04-22syscall: define Syscall6 in terms of RawSyscall6 on linuxMichael Pratt
2022-04-21syscall: define Syscall in terms of RawSyscall on linuxMichael Pratt
2022-04-21Revert "syscall: define Syscall in terms of RawSyscall on linux"Michael Pratt
2022-04-21Revert "syscall: define Syscall6 in terms of RawSyscall6 on linux"Michael Pratt
2022-04-21syscall: define Syscall6 in terms of RawSyscall6 on linuxMichael Pratt
2022-04-21syscall: define Syscall in terms of RawSyscall on linuxMichael Pratt
2022-04-21syscall: define RawSyscall in terms of RawSyscall6 on linuxMichael Pratt
2022-04-21runtime/internal/syscall, syscall: replace RawSyscall6 with runtime implement...Michael Pratt
2022-04-21syscall: move Syscall declarations to OS filesMichael Pratt
2022-04-12syscall: check correct group in FaccessatDamien Neil
2022-04-11all: gofmt main repoRuss Cox
2022-04-05all: separate doc comment from //go: directivesRuss Cox
2022-04-01all: fix various doc comment formatting nitsRuss Cox
2022-03-31syscall: relax output check in TestGroupCleanupUserNamespaceBryan C. Mills
2022-03-29all: use new "unix" build tag where appropriateIan Lance Taylor
2022-03-28syscall: optimize Byte{Ptr,Slice}FromStringKir Kolyshkin
2022-03-18syscall: use bytealg.IndexByte in clenTobias Klauser
2022-03-18syscall: unskip TestDirentRepeat on freebsdTobias Klauser
2022-03-18syscall: optimize UTF16{,Ptr}FromStringTobias Klauser
2022-03-17syscall: allow EINVAL in TestSCMCredentialsJosh Bleecher Snyder
2022-03-17syscall: call ABI0 exitsyscall on Plan 9/AMD64Cherry Mui
2022-03-16syscall: ensure that Getwd returns absolute pathKir Kolyshkin
2022-03-16syscall: call ABIInternal entersyscall on register ABI platformsCherry Mui
2022-03-15syscall: add race annotations to Windows ReadFile and WriteFileIan Lance Taylor
2022-03-12syscall: add race annotations to Pread and PwriteIan Lance Taylor
2022-03-11runtime/pprof, syscall: report MaxRSS on all unix platformsTobias Klauser
2022-03-08runtime, syscall: implement syscall.Pipe using syscall.Pipe2 on solarisTobias Klauser
2022-03-08syscall: add Pipe2 on solaris and use it for forkExecPipeTobias Klauser
2022-03-05syscall: use dup3 in forkAndExecInChild on OpenBSDTobias Klauser
2022-03-04syscall: remove TestRlimitIan Lance Taylor
2022-03-03syscall, runtime/internal/syscall: always return 0 in r2 on ppc64{,le} linux ...Paul E. Murphy
2022-03-02syscall: remove accept on LinuxTobias Klauser
2022-02-15runtime, syscall: reimplement AllThreadsSyscall using only signals.Michael Pratt
2022-02-09syscall: use RLIMIT_CPU instead of RLIMIT_NOFILETamir Duberstein
2022-01-07syscall: in TestDirent, make as many ReadDirent calls as are neededBryan C. Mills
2021-12-13all: gofmt -w -r 'interface{} -> any' srcRuss Cox
2021-12-09syscall: avoid writing to p when Pipe(p) failsRuss Cox
2021-12-09syscall: fix ForkLock spurious close(0) on pipe failureRuss Cox
2021-11-06all: remove more leftover // +build linesTobias Klauser
2021-11-05syscall: fix mkall.sh for openbsd/386Tobias Klauser
2021-11-04net: pass around pointers to SockaddrInetNJosh Bleecher Snyder
2021-11-04net: remove the alloc from ReadMsgUDPAddrPortJosh Bleecher Snyder
2021-11-04net: remove the alloc from WriteMsgUDPAddrPortJosh Bleecher Snyder
2021-11-04syscall: fix and document uses of RegEnumKeyExMichael Anthony Knyszek
2021-11-04syscall: unify unix Recvmsg epiloguesJosh Bleecher Snyder
2021-11-04syscall: unify unix Sendmsg prologuesJosh Bleecher Snyder
2021-11-03syscall: migrate new UDP send/recv API to internal/syscall/unixJosh Bleecher Snyder
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