summaryrefslogtreecommitdiff
path: root/test/chan/nonblock.go
AgeCommit message (Collapse)AuthorFilesLines
2012-04-06Imported Upstream version 1upstream/1Ondřej Surý1-4/+3
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+283
2011-09-13Imported Upstream version 60Ondřej Surý1-283/+0
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý1-51/+102
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-38/+60
2010-03-30single argument panicRuss Cox1-88/+154
note that sortmain.go has been run through hg gofmt; only the formatting of the day initializers changed. i'm happy to revert that formatting if you'd prefer. stop on error in doc/progs/run R=r CC=golang-dev http://codereview.appspot.com/850041
2009-05-08move things out of sys into os and runtimeRuss Cox1-3/+4
R=r OCL=28569 CL=28573
2009-01-23make test/chan/nonblock work even with real os threadsRuss Cox1-33/+62
R=ken OCL=23422 CL=23422
2009-01-16casify, cleanup sysRuss Cox1-1/+1
R=r OCL=22978 CL=22984
2009-01-06new new & makeRuss Cox1-4/+4
R=r OCL=22166 CL=22166
2008-12-19change *map to map; *chan to chan; new(T) to new(*T)Russ Cox1-16/+16
fix bugs left over from *[] to [] conversion. TBR=r OCL=21576 CL=21581
2008-09-26test and fix non-blocking chan ops on buffered chansRuss Cox1-56/+58
R=ken DELTA=68 (19 added, 0 deleted, 49 changed) OCL=15966 CL=15969
2008-09-16update tests to new communications syntaxRob Pike1-8/+8
powser1.go has not been tested - waiting for compiler to catch up R=ken OCL=15415 CL=15415
2008-08-11fix bug depot:Rob Pike1-21/+21
1) fix print statements, panic statements (parentheses required) 2) len is now allowed as a var name (bug053) R=gri OCL=14106 CL=14106
2008-07-16strengthen test by checking valuesRob Pike1-10/+15
SVN=127601
2008-07-16add test for non-blocking channel opsRob Pike1-0/+107
SVN=127595