summaryrefslogtreecommitdiff
path: root/test/dialgoogle.go
AgeCommit message (Collapse)AuthorFilesLines
2008-12-18host and port name lookupRuss Cox1-111/+0
R=r,presotto DELTA=1239 (935 added, 281 deleted, 23 changed) OCL=21041 CL=21539
2008-11-25change meaning of $GOMAXPROCS to number of cpus to use,Russ Cox1-1/+1
not number of threads. can still starve all the other threads, but only by looping, not by waiting in a system call. fix darwin syscall.Syscall6 bug. fix chanclient bug. delete $GOMAXPROCS from network tests. add stripped down printf, sys.printhex to runtime. R=r DELTA=355 (217 added, 36 deleted, 102 changed) OCL=20017 CL=20019
2008-10-07update code to follow new semicolon rules:Russ Cox1-5/+5
* 1. all statements and declarations are terminated by semicolons * 2. semicolons can be omitted at top level. * 3. semicolons can be omitted before and after the closing ) or } * on a list of statements or declarations. /home/rsc/bin/addsemi and then diff+tweak. R=r,gri OCL=16620 CL=16643
2008-09-26Darwin kqueue/kevent-based network FDsRuss Cox1-2/+17
R=r OCL=15998 CL=16004
2008-09-17add network listening & testsRuss Cox1-0/+96
R=r,presotto OCL=15410 CL=15440