summaryrefslogtreecommitdiff
path: root/src/lib/os/exec.go
AgeCommit message (Collapse)AuthorFilesLines
2009-03-11Rename os.FD to os.File.Russ Cox1-1/+1
Make Fstat, Readdirnames, and Readdir methods on os.File. R=r DELTA=281 (79 added, 3 deleted, 199 changed) OCL=25891 CL=26130
2009-03-07document osRob Pike1-6/+22
R=rsc DELTA=143 (96 added, 0 deleted, 47 changed) OCL=25876 CL=25888
2009-02-15assorted changes:Russ Cox1-0/+3
- use a lock instead of a thread in once avoids deadlock in recursive once calls - implement os.Setenv - remove "export" from some scripts - remove _ from names in time package - fix time test for non-MTV machines R=r DELTA=265 (87 added, 58 deleted, 120 changed) OCL=25057 CL=25057
2009-02-15add os.ForkExec, os.Exec, os.Wait, exec.OpenCmd.Russ Cox1-0/+70
as thread-safe as possible, given the surrounding system. add stub RWLock implementation. R=r DELTA=852 (834 added, 6 deleted, 12 changed) OCL=25046 CL=25053