summaryrefslogtreecommitdiff
path: root/src/os
Commit message (Expand)AuthorAgeFilesLines
...
* os/exec: avoid leaking an exec.Cmd in TestWaitInterruptBryan C. Mills2023-01-101-0/+1
* os: reenable TestReaddirSmallSeek on windowsqmuntal2022-12-191-3/+0
* os/user,net: add -fno-stack-protector to CFLAGSThan McIntosh2022-12-161-0/+1
* os/exec: retry ETXTBSY errors in TestFindExecutableVsNoexecBryan C. Mills2022-12-161-2/+15
* os: skip size test in TestLstat if the file is a symlinkIan Lance Taylor2022-12-101-3/+5
* os/user: zero-initialize C structs returned to GoBryan C. Mills2022-12-091-16/+21
* os/user: on AIX getpwuid_r seems to return -1 on overflowIan Lance Taylor2022-12-081-0/+4
* os/user: fix buffer retry loop on macOSRuss Cox2022-12-075-1/+32
* os, net/http: avoid escapes from os.DirFS and http.Dir on WindowsDamien Neil2022-12-062-18/+64
* all: add missing periods in commentscui fliter2022-11-181-1/+1
* os: use testenv.Command instead of exec.Command in testscui fliter2022-11-172-7/+7
* internal/testpty: move from os/signal/internal/ptyAustin Clements2022-11-164-106/+3
* os,syscall: File.Stat to use file handle for directories on Windowsqmuntal2022-11-146-57/+87
* os: don't request read access from CreateFile in StatDamien Neil2022-11-141-6/+2
* internal/godebug: define more efficient APIRuss Cox2022-11-144-9/+9
* os/exec: fix TestWaitInterrupt/WaitDelay error messagescott2022-11-111-1/+1
* os/user: use libc (not cgo) on macOSRuss Cox2022-11-1114-192/+266
* os/signal/internal/pty: use libc (not cgo) on macOSRuss Cox2022-11-103-23/+68
* os: document that WriteFile is not atomicRichard Tweed2022-11-101-0/+2
* os/user: allocate buffers in Go memory, not C memoryIan Lance Taylor2022-11-101-91/+67
* os: remove special casing of NUL in Windows file operationsDamien Neil2022-11-095-94/+57
* all: fix function names in commentscui fliter2022-11-041-1/+1
* os/exec: allow NUL in environment variables on Plan 9Matthew Dempsky2022-11-043-6/+20
* os/exec: allow open descriptors to be closed during TestPipeLookPathLeakBryan C. Mills2022-11-031-5/+15
* syscall, os/exec: reject environment variables containing NULsDamien Neil2022-11-013-10/+37
* os: in TestDirFS only check returned path for unexpected stringIan Lance Taylor2022-10-311-1/+1
* os: don't include DirFS argument in DirFS errorsIan Lance Taylor2022-10-282-9/+14
* os/exec: add the Cancel and WaitDelay fieldsBryan C. Mills2022-10-255-30/+843
* os/signal: pass *int32 to ioctl that expects pid_tIan Lance Taylor2022-10-171-5/+5
* os/signal: add missing newlines to TestTerminalSignalMichael Pratt2022-10-141-3/+3
* os/signal: rewrite TestTerminalSignal without bashMichael Pratt2022-10-141-140/+251
* os: split wait6 syscall wrapper into per-platform filesBryan C. Mills2022-10-136-17/+93
* os/exec: reduce arbitrary sleeps in TestWaitidBryan C. Mills2022-10-131-19/+38
* os/exec: set traceback to "system" in TestContextCancelBryan C. Mills2022-10-131-0/+2
* os/signal: document behavior of SIGPIPE on non-Go threadIan Lance Taylor2022-10-121-0/+6
* os: use the correct constant for P_PID on NetBSDBryan C. Mills2022-10-121-1/+6
* os/exec: remove protection against a duplicate Close on StdinPipeBryan C. Mills2022-10-112-22/+25
* os: use poll.fdMutex for Plan 9 filesIan Lance Taylor2022-10-085-16/+252
* os/exec: document ProcessState available after a call to Wait or Runhopehook2022-10-071-2/+3
* os/exec: parallelize more testsBryan C. Mills2022-10-068-7/+89
* os/exec: delete TestExtraFilesFDShuffleBryan C. Mills2022-10-061-116/+9
* os: if dirFS.Open fails, undo use of backslashes in error messageIan Lance Taylor2022-10-062-2/+21
* all: fix some typoskijimaD2022-10-061-2/+2
* os/exec: add a GODEBUG setting to diagnose leaked processesBryan C. Mills2022-10-043-1/+58
* Revert "os/exec: make StdoutPipe and StderrPipe safe to Close concurrently"Bryan Mills2022-10-041-6/+4
* os: use backslashes for DirFS on WindowsIan Lance Taylor2022-10-021-2/+17
* os/exec: make StdoutPipe and StderrPipe safe to Close concurrentlyBryan C. Mills2022-10-011-4/+6
* os/exec: recombine goroutinePipes and userPipesBryan C. Mills2022-10-011-25/+15
* all: use "unix" build tag where appropriateTobias Klauser2022-09-301-1/+1
* all: use strings.Builder where appropriatehopehook2022-09-291-5/+5