summaryrefslogtreecommitdiff
path: root/src/lib/exec_test.go
AgeCommit message (Collapse)AuthorFilesLines
2009-05-05directory-per-package step 1: move files from lib/X.go to lib/X/X.goRob Pike1-51/+0
no substantive changes except: - new Makefiles, all auto-generated - go/src/lib/Makefile has been extensively edited R=rsc OCL=28310 CL=28310
2009-04-19Readn is a silly name when there's no n. Change to FullRead.Rob Pike1-2/+2
R=gri DELTA=15 (0 added, 0 deleted, 15 changed) OCL=27619 CL=27619
2009-04-15code changes for array conversion.Russ Cox1-2/+2
as a reminder, the old conversion was that you could write var arr [10]byte; var slice []byte; slice = arr; but now you have to write slice = &arr; the change eliminates an implicit &, so that the only implicit &s left are in the . operator and in string(arr). also, removed utf8.EncodeRuneToString in favor of string(rune). R=r DELTA=83 (1 added, 23 deleted, 59 changed) OCL=27531 CL=27534
2009-03-05misc docRuss Cox1-4/+4
R=r DELTA=50 (28 added, 0 deleted, 22 changed) OCL=25763 CL=25770
2009-03-03Automated g4 rollback of changelist 25024,Russ Cox1-2/+2
plus significant hand editing. Back to T{x} for composite literals. R=r OCL=25612 CL=25632
2009-02-15add os.ForkExec, os.Exec, os.Wait, exec.OpenCmd.Russ Cox1-0/+51
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