aboutsummaryrefslogtreecommitdiff
path: root/src/os
AgeCommit message (Expand)Author
2023-07-06os: do not skip directory entries with zero inodes on wasip1Achille Roussel
2023-07-04os, syscall: update unreachable link about =C: envsOleksandr Redko
2023-06-17os/exec: document a method to check if a process is aliveMoritz Poldrack
2023-06-14all: fix spelling errorsAlexander Yastrebov
2023-05-25net: implement wasip1 FileListener and FileConnChris O'Hara
2023-05-24os: add dirFs.ReadDir to implement fs.ReadDirFS for DirFSTobias Klauser
2023-05-24os: explicitly check for invalid FD in NewFileMichael Pratt
2023-05-24os: implement fs.ReadFileFS for DirFSSean Liao
2023-05-24os: make TestProgWideChdir detect more possible failure casesmiller
2023-05-23os: avoid second fcntl syscall in NewFile on unixTobias Klauser
2023-05-20net, os: net.Conn.File.Fd should return a blocking descriptorIan Lance Taylor
2023-05-19os: remove unnecessary return after t.FatalOleksandr Redko
2023-05-18os: set File.appendMode in NewFile if file was opened with O_APPENDTobias Klauser
2023-05-17os: if descriptor is non-blocking, retain that in Fd methodIan Lance Taylor
2023-05-16os, syscall: permit setting mtime to Unix 0 on WindowsIan Lance Taylor
2023-05-15os, syscall: support ill-formed UTF-16 strings on Windowsqmuntal
2023-05-12os, runtime: remove unused implementations of os.sigpipeIan Lance Taylor
2023-05-11os: make Chtimes accept empty time values to skip file time modificationConstantin Konstantinidis
2023-05-04all: add String for fs.{FileInfo,DirEntry} implementationsIan Lance Taylor
2023-04-28os: fix TestChdirAndGetwd/ReaddirnamesOneAtATime on wasip1 to run on Windows ...Takeshi Yoneda
2023-04-21os/user: skip tests that invoke Current if it returns an expected errorBryan C. Mills
2023-04-20std: fix various nilness findingsAlan Donovan
2023-04-19os: check for ErrNotExist instead of ErrExist in TestNonPollableBryan C. Mills
2023-04-18runtime: add and use pollDesc fd sequence fieldIan Lance Taylor
2023-04-18cmd/go: add check for unknown godebug settingRuss Cox
2023-04-12syscall: implement Fchdir on Windowsqmuntal
2023-04-11os: adjust wait6/waitid comment for netbsdTobias Klauser
2023-04-07os: add wasip1 supportJohan Brandhorst-Satzkorn
2023-04-04os/exec: skip remount in TestFindExecutableVsNoexec on EROFSTobias Klauser
2023-03-29os: don't check for IsExist in MkdirAll exampleStefan Dombrowski
2023-03-29os: remove mixed dot- and non-dot- imports in testsIan Lance Taylor
2023-03-25all: add a few links in package godocsDaniel Martí
2023-03-23Revert "os/user: lookup Linux users and groups via systemd userdb"Heschi Kreinick
2023-03-23os/user: lookup Linux users and groups via systemd userdbAnanth Bhaskararaman
2023-03-22os: avoid creating a new file in Truncate on WindowsNont Thanonchai
2023-03-16os: don't check for TTY before calling spliceIan Lance Taylor
2023-03-15os, internal/poll: don't use splice with ttyIan Lance Taylor
2023-03-15os, syscall: move rlimit code to syscallIan Lance Taylor
2023-03-15os: don't hide all methods in recursive call to io.CopyIan Lance Taylor
2023-03-13os: correct func name in WriteFile godoc commentTobias Klauser
2023-03-10os: skip TestExecutableDeleted earlier when 'go build' is not supportedBryan C. Mills
2023-03-02cmd/link/internal/ld: move more of mustLinkExternal into internal/platformBryan C. Mills
2023-02-28net,os: set the theoretical unlimited remaining bytes to max int64Andy Pan
2023-02-28all: fix typospgxiaolianzi
2023-02-27os: don't try to put directory into non-blocking modeIan Lance Taylor
2023-02-27os: skip zero-copy attempts with copy_file_range(2)/splice(2) for target file...Andy Pan
2023-02-27os: checking for testable network before creating local listenerCuong Manh Le
2023-02-27os: ensure File.ReadFrom returns ErrClosed instead of the internal poll.ErrFi...Andy Pan
2023-02-27os: support zero-copy from TCP/Unix socket to fileAndy Pan
2023-02-21os: use testenv.Command instead of exec.Command in testscui fliter