summaryrefslogtreecommitdiff
path: root/src/lib/syscall/exec.go
AgeCommit message (Collapse)AuthorFilesLines
2009-06-01new syscall package: manually maintained files and scripts.Russ Cox1-60/+62
auto-generated files and deletions are in another CL. goals for new syscall: * automate as much as possible * do not let clients do unsafe things * use simple types (int not int64) * fewer files the files are renamed from foo_amd64_linux to foo_linux_amd64, both because it reads better (all the linux are related, all the amd64 less so) and because it made it easier to replace the existing ones. R=r DELTA=2336 (2260 added, 6 deleted, 70 changed) OCL=29709 CL=29723
2009-05-15add directory argument to os.ForkExecRuss Cox1-3/+15
R=iant DELTA=41 (35 added, 0 deleted, 6 changed) OCL=28892 CL=28895
2009-02-15add os.ForkExec, os.Exec, os.Wait, exec.OpenCmd.Russ Cox1-0/+291
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