1. 14 Dec, 2017 9 commits
  2. 13 Dec, 2017 8 commits
  3. 12 Dec, 2017 5 commits
  4. 11 Dec, 2017 12 commits
  5. 10 Dec, 2017 2 commits
  6. 09 Dec, 2017 2 commits
  7. 08 Dec, 2017 2 commits
    • Matthew Dempsky's avatar
      cmd/compile: fix unsafe.Pointer liveness for Syscall-like functions · 840fad13
      Matthew Dempsky authored
      The package unsafe docs say it's safe to convert an unsafe.Pointer to
      uintptr in the argument list to an assembly function, but it was
      erroneously only detecting normal pointers converted to unsafe.Pointer
      and then to intptr.
      
      Fixes #23051.
      
      Change-Id: Id1be19f6d8f26f2d17ba815191717d2f4f899732
      Reviewed-on: https://go-review.googlesource.com/82817
      Run-TryBot: Matthew Dempsky <mdempsky@google.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
      840fad13
    • Ian Lance Taylor's avatar
      net: calling File disables the SetDeadline methods · a9410281
      Ian Lance Taylor authored
      This essentially applies https://golang.org/cl/81636 to the net package.
      
      The full truth seems too complicated to write in this method's doc, so
      I'm going with a simple half truth.
      
      The full truth is that File returns the descriptor in blocking mode,
      because that is historically how it worked, and existing programs
      would be surprised if the descriptor is suddenly non-blocking. On Unix
      systems whether a socket is non-blocking or not is a property of the
      underlying file description, not of a particular file descriptor, so
      changing the returned descriptor to blocking mode also changes the
      existing socket to blocking mode. Blocking mode works fine, althoug I/O
      operations now take up a thread. SetDeadline and friends rely on the
      runtime poller, and the runtime poller only works if the descriptor is
      non-blocking. So it's correct that calling File disables SetDeadline.
      The other half of the truth is that if the program is willing to work
      with a non-blocking descriptor, it could call
      syscall.SetNonblock(f.Fd(), true) to change the descriptor, and
      the original socket, to non-blocking mode. At that point SetDeadline
      would start working again. I tried to write that in a way that is
      short and comprehensible but failed. Since we now have the RawConn
      approach to frobbing the descriptor, and hopefully most people can use
      that rather than calling File, I decided to punt.
      
      Updates #22934
      Fixes #21862
      
      Change-Id: If269da762f6f5a88c334e7b6d6f3998f7e10b11e
      Reviewed-on: https://go-review.googlesource.com/82915Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
      a9410281