1. 18 Feb, 2012 1 commit
  2. 12 Dec, 2011 1 commit
  3. 02 Nov, 2011 1 commit
  4. 12 Oct, 2011 1 commit
  5. 06 Jun, 2011 1 commit
  6. 26 Mar, 2011 1 commit
  7. 11 Mar, 2011 1 commit
  8. 16 Feb, 2011 1 commit
  9. 01 Feb, 2011 1 commit
  10. 26 Jan, 2011 1 commit
  11. 19 Jan, 2011 1 commit
    • Roger Peppe's avatar
      netchan: do not block sends; implement flow control. · 6fb1bf26
      Roger Peppe authored
      When data is received for a channel, but that channel
      is not ready to receive it, the central run() loop
      is currently blocked, but this can lead to deadlock
      and interference between independent channels.
      This CL adds an explicit buffer size to netchan
      channels (an API change) - the sender will not
      send values until the buffer is non empty.
      
      The protocol changes to send ids rather than channel names
      because acks can still be sent after a channel is hung up,
      we we need an identifier that can be ignored.
      
      R=r, rsc
      CC=golang-dev
      https://golang.org/cl/2447042
      6fb1bf26
  12. 07 Dec, 2010 1 commit
    • Rob Pike's avatar
      throughout: fix broken calls to Printf etc. · 1ce6245d
      Rob Pike authored
      I have written a tool to verify Printf calls, and although it's not
      ready to be reviewed yet it's already uncovered a spate of problems
      in the repository.  I'm sending this CL to break the changes into
      pieces; as the tool improves it will find more, I'm sure.
      
      R=rsc
      CC=golang-dev
      https://golang.org/cl/3427043
      1ce6245d
  13. 18 Oct, 2010 1 commit
  14. 12 Oct, 2010 1 commit
  15. 23 Sep, 2010 1 commit
  16. 20 Sep, 2010 3 commits
  17. 18 Sep, 2010 1 commit
  18. 16 Sep, 2010 1 commit
  19. 04 Sep, 2010 1 commit
    • Rob Pike's avatar
      netchan: use acknowledgements on export send. · d54b921c
      Rob Pike authored
      Also add exporter.Drain() to wait for completion.
      This makes it possible for an Exporter to fire off a message
      and wait (by calling Drain) for the message to be received,
      even if a client has yet to call to retrieve it.
      
      Once this design is settled, I'll do the same for import send.
      
      Testing strategies welcome.  I have some working stand-alone
      tests.
      
      R=rsc
      CC=golang-dev
      https://golang.org/cl/2137041
      d54b921c
  20. 26 Aug, 2010 1 commit
    • Ian Lance Taylor's avatar
      netchan: Fix race condition in test. · b279c048
      Ian Lance Taylor authored
      Two tests start a goroutine which runs exportSend, and then
      the tests run importReceive.  exportSend creates an export
      channel.  importReceive asks to receive values on that
      channel.  Because exportSend runs in a separate goroutine,
      it's possible for the export client to receive the request for
      values on the channel, from importReceive, before the
      goroutine actually creates the export channel.  That causes an
      error: "export: no such channel: exportedSend".  This patch
      avoids the race by creating the export channel before starting
      the goroutine.
      
      There does not seem to be a similar race condition in the
      tests which send data in the other direction.
      
      R=r
      CC=golang-dev
      https://golang.org/cl/2026045
      b279c048
  21. 29 Jun, 2010 1 commit
  22. 28 Jun, 2010 1 commit
  23. 21 Jun, 2010 1 commit
  24. 03 Jun, 2010 1 commit
  25. 29 May, 2010 1 commit
  26. 11 May, 2010 1 commit
  27. 13 Apr, 2010 1 commit
  28. 20 Jan, 2010 1 commit