aboutsummaryrefslogtreecommitdiff
path: root/src/os/file_unix.go
AgeCommit message (Expand)Author
2021-05-02os: document that Windows Symlink to missing target creates file symlinkIan Lance Taylor
2021-04-13all: simplify the spelling of LinuxBrad Fitzpatrick
2021-04-03os: reuse readdir buffers on unix with a sync.PoolTom Thorogood
2021-02-20all: go fmt std cmd (but revert vendor)Russ Cox
2021-01-26os: further document limitations around naked file descriptorsVictor Michel
2020-10-20os: use keyed literals for PathErrorRuss Cox
2020-10-20os: add File.ReadDir method and DirEntry typeRuss Cox
2020-09-28os: fix SyscallConn typos in the File.Fd commentsChangkun Ou
2020-09-27os: document and emphasize a potential misuse of File.FdChangkun Ou
2020-09-23all: add GOOS=iosCherry Zhang
2020-08-19os, internal/poll: loop on EINTR for all file syscallsIan Lance Taylor
2020-06-08os: always check for EINTR in calls to openIan Lance Taylor
2020-03-20os: merge common Unix/Windows methodsIan Lance Taylor
2020-03-01os: seek should invalidate any cached directory readsKeith Randall
2019-12-05os: reset dirinfo when seeking on DarwinKeith Randall
2019-11-01os: allow case only renames on case-insensitive filesystemsAudrius Butkevicius
2019-10-09all: remove the nacl port (part 1)Brad Fitzpatrick
2019-06-05doc: clarify safety of multiple and concurent os.(*File).Close() callsAlex Myasoedov
2019-04-19os: disable the use of netpoll on directories as well on *BSDsYuval Pavel Zholkover
2019-03-27os: reject WriteAt if file opened in append modeLE Manh Cuong
2019-03-12os: drop special case for FreeBSD 10.4 in newFileTobias Klauser
2019-03-01os: make Readlink work with symlinks with target like \??\Volume{ABCD}\Alex Brainman
2019-01-30os: make openFdAt act like openFileNologIan Lance Taylor
2019-01-09os: always treat files as unpollable on FreeBSDIan Lance Taylor
2019-01-09os: disable the use of netpoll on regular files on *BSDs.Yuval Pavel Zholkover
2018-12-13runtime,os,syscall,internal/poll: replace getdirentries on iOSElias Naur
2018-10-11os: add AIX operating systemClément Chigot
2018-08-03os: document that Remove removes only empty directoriesIan Lance Taylor
2018-07-11os: clarify that Close cancels pending I/OIan Lance Taylor
2018-06-13os: don't poll fifos on DarwinIan Lance Taylor
2018-06-01all: update comment URLs from HTTP to HTTPS, where possibleTim Cooper
2018-06-01os: add js/wasm architectureRichard Musiol
2018-04-11os: use poller when NewFile is called with a blocking descriptor.Nick Patavalis
2018-02-23os: respect umask in Mkdir and OpenFile on BSD systems when perm has ModeStic...Yuval Pavel Zholkover
2017-12-14net, os: don't wait for Close in blocking modeIan Lance Taylor
2017-12-12os: don't use test logger for GetwdIan Lance Taylor
2017-12-11cmd/go: invalidate cached test results if env vars or files changeRuss Cox
2017-12-02os: calling Fd disables the SetDeadline methodsIan Lance Taylor
2017-10-25os: add deadline methods for File typeIan Lance Taylor
2017-09-24os: don't refer directly to Sysfd in epipecheckIan Lance Taylor
2017-06-14os: clarify behavior of TempDirBrad Fitzpatrick
2017-05-18os: add some comments and remove an unused variable in rename funcBrad Fitzpatrick
2017-05-18os: lstat oldname before renamingAlexander Menzhinsky
2017-05-18os: document that NewFile can return nilAlberto Donizetti
2017-04-26os: consistently return ErrClosed for closed fileIan Lance Taylor
2017-04-26os, net, internal/poll: return consistent error for closed socketIan Lance Taylor
2017-04-25os: fix race between file I/O and CloseIan Lance Taylor
2017-02-15os: use poller for file I/OIan Lance Taylor
2016-11-07os: use extended-length paths on Windows when possibleQuentin Smith
2016-10-24os: add ErrClosed, return for use of closed FileDan Caddigan