Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(24)

Issue 4079053: code review 4079053: replace non-blocking send, receive syntax with select (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
14 years, 1 month ago by rsc
Modified:
14 years, 1 month ago
Reviewers:
CC:
golang-dev, nigeltao, niemeyer, r
Visibility:
Public.

Description

replace non-blocking send, receive syntax with select

Patch Set 1 #

Patch Set 2 : code review 4079053: replace non-blocking send, receive syntax with select #

Total comments: 2

Patch Set 3 : code review 4079053: replace non-blocking send, receive syntax with select #

Patch Set 4 : code review 4079053: replace non-blocking send, receive syntax with select #

Total comments: 5

Patch Set 5 : code review 4079053: replace non-blocking send, receive syntax with select #

Total comments: 9

Patch Set 6 : code review 4079053: replace non-blocking send, receive syntax with select #

Patch Set 7 : code review 4079053: replace non-blocking send, receive syntax with select #

Unified diffs Side-by-side diffs Delta from patch set Stats (+399 lines, -202 lines) Patch
M src/pkg/compress/flate/deflate_test.go View 2 chunks +10 lines, -3 lines 0 comments Download
M src/pkg/exp/draw/x11/conn.go View 1 2 1 chunk +7 lines, -4 lines 0 comments Download
M src/pkg/fmt/print.go View 1 2 3 4 5 6 2 chunks +35 lines, -8 lines 0 comments Download
M src/pkg/fmt/scan.go View 1 2 3 4 5 2 chunks +4 lines, -8 lines 0 comments Download
M src/pkg/net/fd.go View 1 chunk +10 lines, -5 lines 0 comments Download
M src/pkg/net/server_test.go View 1 chunk +6 lines, -3 lines 0 comments Download
M src/pkg/netchan/common.go View 2 chunks +9 lines, -3 lines 0 comments Download
M src/pkg/netchan/import.go View 1 2 3 4 5 6 1 chunk +4 lines, -2 lines 0 comments Download
M src/pkg/os/inotify/inotify_linux.go View 1 chunk +5 lines, -1 line 0 comments Download
M src/pkg/path/path_test.go View 1 2 3 4 2 chunks +14 lines, -4 lines 0 comments Download
M src/pkg/rpc/client.go View 4 chunks +14 lines, -6 lines 0 comments Download
M src/pkg/rpc/server_test.go View 1 chunk +5 lines, -7 lines 0 comments Download
M src/pkg/time/sleep_test.go View 1 chunk +6 lines, -4 lines 0 comments Download
M src/pkg/time/tick.go View 3 chunks +9 lines, -3 lines 0 comments Download
M src/pkg/time/tick_test.go View 1 chunk +4 lines, -2 lines 0 comments Download
M test/chan/nonblock.go View 9 chunks +102 lines, -51 lines 0 comments Download
M test/chan/perm.go View 1 2 3 4 5 6 1 chunk +28 lines, -31 lines 0 comments Download
M test/closedchan.go View 1 2 3 4 5 6 9 chunks +82 lines, -10 lines 0 comments Download
M test/errchk View 1 chunk +1 line, -0 lines 0 comments Download
M test/fixedbugs/bug016.go View 1 2 3 4 5 6 2 chunks +3 lines, -3 lines 0 comments Download
M test/fixedbugs/bug069.go View 1 2 3 4 5 6 1 chunk +12 lines, -11 lines 0 comments Download
M test/fixedbugs/bug081.go View 1 2 3 4 5 6 1 chunk +4 lines, -4 lines 0 comments Download
M test/fixedbugs/bug196.go View 1 2 3 4 5 6 1 chunk +4 lines, -3 lines 0 comments Download
M test/fixedbugs/bug234.go View 1 2 3 4 5 6 1 chunk +13 lines, -12 lines 0 comments Download
M test/fixedbugs/bug242.go View 1 2 3 4 5 6 1 chunk +5 lines, -2 lines 0 comments Download
M test/golden.out View 2 chunks +0 lines, -6 lines 0 comments Download
M test/named1.go View 1 2 3 4 5 6 1 chunk +3 lines, -6 lines 0 comments Download

Messages

Total messages: 7
rsc
Hello golang-dev@googlegroups.com (cc: golang-dev@googlegroups.com), I'd like you to review this change.
14 years, 1 month ago (2011-01-30 22:46:56 UTC) #1
nigeltao
http://codereview.appspot.com/4079053/diff/30/src/pkg/exp/draw/x11/conn.go File src/pkg/exp/draw/x11/conn.go (right): http://codereview.appspot.com/4079053/diff/30/src/pkg/exp/draw/x11/conn.go#newcode127 src/pkg/exp/draw/x11/conn.go:127: // sent flush notification Should comments be complete sentences?
14 years, 1 month ago (2011-01-30 23:49:42 UTC) #2
rsc
http://codereview.appspot.com/4079053/diff/30/src/pkg/exp/draw/x11/conn.go File src/pkg/exp/draw/x11/conn.go (right): http://codereview.appspot.com/4079053/diff/30/src/pkg/exp/draw/x11/conn.go#newcode127 src/pkg/exp/draw/x11/conn.go:127: // sent flush notification On 2011/01/30 23:49:42, nigeltao wrote: ...
14 years, 1 month ago (2011-01-31 00:08:17 UTC) #3
niemeyer
LGTM Some minor comments: http://codereview.appspot.com/4079053/diff/7029/src/pkg/path/path_test.go File src/pkg/path/path_test.go (right): http://codereview.appspot.com/4079053/diff/7029/src/pkg/path/path_test.go#newcode287 src/pkg/path/path_test.go:287: t.Errorf("%d. error expected, none found", ...
14 years, 1 month ago (2011-01-31 18:02:02 UTC) #4
rsc
nice catch; updated http://codereview.appspot.com/4079053/diff/7029/src/pkg/path/path_test.go File src/pkg/path/path_test.go (right): http://codereview.appspot.com/4079053/diff/7029/src/pkg/path/path_test.go#newcode287 src/pkg/path/path_test.go:287: t.Errorf("%d. error expected, none found", i) ...
14 years, 1 month ago (2011-01-31 18:07:54 UTC) #5
r
LGTM http://codereview.appspot.com/4079053/diff/12001/src/pkg/fmt/print.go File src/pkg/fmt/print.go (right): http://codereview.appspot.com/4079053/diff/12001/src/pkg/fmt/print.go#newcode77 src/pkg/fmt/print.go:77: type cache struct { put a comment on ...
14 years, 1 month ago (2011-01-31 21:04:45 UTC) #6
rsc
14 years, 1 month ago (2011-01-31 23:36:30 UTC) #7
*** Submitted as 413e7fa8ef3d ***

replace non-blocking send, receive syntax with select

R=golang-dev, nigeltao, niemeyer, r
CC=golang-dev
http://codereview.appspot.com/4079053
Sign in to reply to this message.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b