1. 9c0b145 os: don't return Chmod's error from Mkdir and OpenFile by Kato Kazuyoshi · 10 years ago
  2. 6262902 os: handle the sticky bit separately for *BSD and Solaris by Kato Kazuyoshi · 10 years ago
  3. a62da20 os: do not assume syscall i/o funcs return n=0 on error by Russ Cox · 10 years ago
  4. c007ce8 build: move package sources from src/pkg to src by Russ Cox · 11 years ago[Renamed from src/pkg/os/file.go]
  5. a4b66b7 os: fix build. by Shenghou Ma · 11 years ago
  6. aa0ae75 os: clarify docs for Rename. by Shenghou Ma · 11 years ago
  7. 4cb086b os: be consistent about File methods with nil receivers by Rob Pike · 12 years ago
  8. 8378804 os: fix windows and plan9 builds by Brad Fitzpatrick · 12 years ago
  9. 465b9c3 gofmt: apply gofmt -w src misc by Robert Griesemer · 12 years ago
  10. eb7d569 os: fix documentation typos: s/an array/a slice/. by Nigel Tao · 12 years ago
  11. 27e07a2 os: fix minor typo by Sanjay Menakuru · 13 years ago
  12. 441538e os,time: fix Plan 9 build by Fazlul Shahriar · 13 years ago
  13. efb28b2 os: add a simple example to the package doc. by Rob Pike · 13 years ago
  14. 56069f0 os: delete os.EINVAL and so on by Rob Pike · 13 years ago
  15. 4152b43 os: delete Exec, NewFile takes uintptr, rename ShellExpand, doc fixes by Brad Fitzpatrick · 13 years ago
  16. be0f6fe os: talk about errors and PathError in the package documentation by Rob Pike · 13 years ago
  17. 6454a3e os: use FileMode instead of uint32 in various functions by Brad Fitzpatrick · 13 years ago
  18. 744fb52 os: be consistent with receiver names for godoc TOC alignment by Brad Fitzpatrick · 13 years ago
  19. c69d634 os: make ReadAt comment clearer by Russ Cox · 13 years ago
  20. c017a82 syscall: use error by Russ Cox · 13 years ago
  21. 08a073a os: use error, io.EOF by Russ Cox · 13 years ago
  22. 4853c51 os: do not interpret 0-length read as EOF by Russ Cox · 13 years ago
  23. 63b8b948 windows: define and use syscall.Handle Fixes #1487. by Wei Guangjing · 14 years ago
  24. f711532 os: simplify WriteString It was working too hard. by Rob Pike · 14 years ago
  25. 34e0725 os: be explicit in the package comment that this package is for portable features only. by Rob Pike · 14 years ago
  26. b1deb3b os: fix race in ReadAt/WriteAt on Windows by Alex Brainman · 14 years ago
  27. 6a186d3 src/pkg: make package doc comments consistently start with "Package foo". by Nigel Tao · 14 years ago
  28. 8a90fd3 os: New Open API. by Rob Pike · 14 years ago
  29. 2be13a8 os: add Seek whence constants by Brad Fitzpatrick · 14 years ago
  30. c256f0a os: Plan 9 support. by Yuval Pavel Zholkover · 14 years ago
  31. 217693e os: add Sync to *File, wraps syscall.Fsync by Andrew Gerrand · 14 years ago
  32. e45b58f os: change the type of permissions argument for Open etc. to uint32. by Rob Pike · 15 years ago
  33. 61fb9cc os: change comment on O_APPEND to be more accurate by Andrew Gerrand · 15 years ago
  34. bb84f4b changes &x -> x[0:] for array to slice conversion by Russ Cox · 15 years ago
  35. 1afa2a1 os: add Chtimes function by Brad Fitzpatrick · 15 years ago
  36. fb6b391 os, syscall: more mingw by Alex Brainman · 15 years ago
  37. b07e4d9 os: mingw version of Readdir() and Stat() implemented by Alex Brainman · 15 years ago
  38. 3ddeef8 rename os.Dir to os.FileInfo by Rob Pike · 15 years ago
  39. 79017aa syscall: implementing some mingw syscalls required by os package by Alex Brainman · 15 years ago
  40. b21f313 os: drop File finalizer after normal Close by Russ Cox · 15 years ago
  41. 62d627f runtime: allow arbitrary return type in SetFinalizer. by Russ Cox · 15 years ago
  42. 3f25c8a Fix comment for Chmod. by Peter Froehlich · 15 years ago
  43. d65a5cc 1) Change default gofmt default settings for by Robert Griesemer · 15 years ago
  44. 51f2932 syscalls can return negative i/o counts. fix bugs in ReadAt and WriteAt not to include by Rob Pike · 15 years ago
  45. 0b5cc31 Add os.Rename. by Ian Lance Taylor · 15 years ago
  46. 9ac4449 gofmt -r 'α[β:len(α)] -> α[β:]' -w src/cmd src/pkg by Russ Cox · 15 years ago
  47. 4e201c7 os.ReadAt doesn't return EOF at EOF. thanks to lionkov for the fix. by Rob Pike · 15 years ago
  48. c90d392 spell it with an "e" by Ken Thompson · 15 years ago
  49. 3bb0032 - replaced gofmt expression formatting algorithm with by Robert Griesemer · 15 years ago
  50. 40621d5 remove semis after statements in one-statement statement lists by Robert Griesemer · 15 years ago
  51. 368f8cb - fine-tuning of one-line func heuristic (nodes.go) by Robert Griesemer · 15 years ago
  52. fd1add2 syscall cleanup. by Russ Cox · 15 years ago
  53. 449086e Change Stat to Lstat in Readdir so we don't recur when someone symlinks "." by Rob Pike · 15 years ago
  54. 2c5ec1e apply gofmt to malloc math once os by Russ Cox · 15 years ago
  55. f7e92c5 os.File.ReadAt/WriteAt by Russ Cox · 16 years ago
  56. 3b864e4 convert low-level (used by testing) packages to by Russ Cox · 16 years ago
  57. 0496040 remove unnecessary pkg. references by Russ Cox · 16 years ago
  58. 8f9a953 make use of forward method declaration by Russ Cox · 16 years ago
  59. a0bcaf4 Change os.Error convention: by Russ Cox · 16 years ago
  60. 64684cc introduce os.EOF and io.ErrUnexpectedEOF. by Russ Cox · 16 years ago
  61. d90e7cb mv src/lib to src/pkg by Rob Pike · 16 years ago[Renamed from src/lib/os/file.go]
  62. 9e0fec9 update Go tree to use new syscall package. by Russ Cox · 16 years ago
  63. 23c81f7 add Getwd, Fchdir, tests by Russ Cox · 16 years ago
  64. 66f5e89 os: MkdirAll, RemoveAll, Chmod, Chown, Truncate, Getgroups. by Russ Cox · 16 years ago
  65. 5e76c03 make Stat indicate whether it followed a symlink. by Russ Cox · 16 years ago
  66. 7aabf2d Add os.Link, os.Symlink, os.Readlink. by Ian Lance Taylor · 16 years ago
  67. 918afd94 move things out of sys into os and runtime by Russ Cox · 16 years ago
  68. f7d3eb9 exit with error status EPIPE if by Russ Cox · 16 years ago
  69. aaf63f8 Step 1 of the Big Error Shift: make os.Error an interface and replace *os.Errors with os.Errors. by Rob Pike · 16 years ago
  70. ff73221 fix infinite loop in Readdirnames: bufp > nbuf can happen by Russ Cox · 16 years ago
  71. 9b3f437 fix error return in Remove change canexec to canExec. by Russ Cox · 16 years ago
  72. 5eae3b2 lib misc by Russ Cox · 16 years ago
  73. 61ba160 Chdir by Russ Cox · 16 years ago
  74. 7a706fb Rename os.FD to os.File. by Russ Cox · 16 years ago
  75. 333cdd8 document os by Rob Pike · 16 years ago
  76. be2edb5 Automated g4 rollback of changelist 25024, plus significant hand editing. by Russ Cox · 16 years ago
  77. 91ceda5 add os.ForkExec, os.Exec, os.Wait, exec.OpenCmd. by Russ Cox · 16 years ago
  78. 9f8f2e6 convert composite literals from { } to ( ). by Russ Cox · 16 years ago
  79. 0c4010a change DirInfo->dirInfo now that 6g export bug is fixed by Rob Pike · 16 years ago
  80. 6017895 drop the os_ prefix on the file names in os. os_test.go can stay. by Rob Pike · 16 years ago[Renamed from src/lib/os/os_file.go]
  81. 00b3d48 Make Readdirnames work properly on Linux. Refactor so Readdir is portable code. by Rob Pike · 16 years ago
  82. d94c5ab Fix Readdirnames to behave properly if reading in little pieces. Requires storing some by Rob Pike · 16 years ago
  83. 704bc9d portable stat for os add name to os.FD clean up some interfaces by Rob Pike · 16 years ago
  84. a01bdb4 Add an accessor function os.FD.Fd() to get the file by Ian Lance Taylor · 16 years ago
  85. 839a684 delete export by Russ Cox · 16 years ago
  86. 1a91b9a casify syscall and sequelae by Rob Pike · 16 years ago
  87. 5564504 new new & make by Russ Cox · 16 years ago
  88. d47d888 convert *[] to []. by Russ Cox · 16 years ago
  89. addd6fa read and write never return -1 now: error return is through the error variable only by Rob Pike · 16 years ago
  90. 23c8faa buf fix: make FD.Read, FD.Write work for empty buffers by Robert Griesemer · 16 years ago
  91. de13727 use &T{1,2,3} constructor for simple new cases by Russ Cox · 16 years ago
  92. f960840 Adding Mkdir. by Cary Hull · 16 years ago
  93. 983f06b update code to follow new semicolon rules: by Russ Cox · 16 years ago
  94. 5267db3 add os.Pipe by Russ Cox · 17 years ago
  95. 7c9e2c2 buffered input & output by Russ Cox · 17 years ago
  96. 5ea7649 pull O_RDONLY etc. up to os library by Rob Pike · 17 years ago
  97. ccede3e make syscall use strings for file names by Rob Pike · 17 years ago
  98. c80b06a add lib/os to standard build break lib/os into multiple source files by Rob Pike · 17 years ago
  99. 92ae2cc add an Error type to be used as a singleton pointer by Rob Pike · 17 years ago
  100. 795004c rudimentary beginnings of soon-to-be-real os library by Rob Pike · 17 years ago