1. 04 Dec, 2017 3 commits
    • Russ Cox's avatar
      cmd/go: disable tests when GOOS/GOARCH != GOHOSTARCH/GOHOSTARCH · 1b9f6633
      Russ Cox authored
      The whole GOROOT/pkg tree is installed using the GOHOSTOS/GOHOSTARCH
      toolchain (installed in GOROOT/pkg/tool/GOHOSTOS_GOHOSTARCH).
      The testgo.exe we run during the cmd/go test will be built
      for GOOS/GOARCH, which means it will use the GOOS/GOARCH toolchain
      (installed in GOROOT/pkg/tool/GOOS_GOARCH).
      
      If these are not the same toolchain, then the entire standard library
      will look out of date to testgo.exe (the compilers in those two different
      tool directories are built for different architectures and have different
      buid IDs), which will cause many tests to do unnecessary rebuilds
      and some tests to attempt to overwrite the installed standard library,
      which will in turn make it look out of date to whatever runs after the
      cmd/go test exits.
      
      Bail out entirely in this case instead of destroying the world.
      
      The changes outside TestMain are checks that might have caught
      this a bit earlier and made it much less confusing to debug.
      
      Fixes #22709.
      Fixes #22965.
      
      Change-Id: Ibf28fa19e29a1f1b8f17875f446d3474dd04a924
      Reviewed-on: https://go-review.googlesource.com/81516
      Run-TryBot: Russ Cox <rsc@golang.org>
      Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      1b9f6633
    • Russ Cox's avatar
      cmd/go: fix -covermode=atomic use of sync/atomic in -coverpkg matches · f047422a
      Russ Cox authored
      If we're using -covermode=atomic with -coverpkg, to add coverage
      to more than just the package being tested, then we need to make sure
      to make sync/atomic available to the compiler for every package
      being recompiled for coverage.
      
      Fixes #22728.
      
      Change-Id: I27f88f6a62e37d4a7455554cd03c8ca2b21f81a4
      Reviewed-on: https://go-review.googlesource.com/81497
      Run-TryBot: Russ Cox <rsc@golang.org>
      Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      f047422a
    • Christos Zoulas's avatar
      runtime: make NetBSD lwp_park use monotonic time · 66fcf454
      Christos Zoulas authored
      This change updates runtime.semasleep to no longer call
      runtime.nanotime and instead calls lwp_park with a duration to sleep
      relative to the monotonic clock, so the nanotime is never called.
      (This requires updating to a newer version of the lwp_park system
      call, which is safe, because Go 1.10 will require the unreleased
      NetBSD 8+ anyway)
      
      Additionally, this change makes the nanotime function use the
      monotonic clock for netbsd/arm, which was forgotten from
      https://golang.org/cl/81135 which updated netbsd/amd64 and netbsd/386.
      
      Because semasleep previously depended on nanotime, the past few days
      of netbsd have likely been unstable because lwp_park was then mixing
      the monotonic and wall clocks. After this CL, lwp_park no longer
      depends on nanotime.
      
      Original patch submitted at:
      https://www.netbsd.org/~christos/go-lwp-park-clock-monotonic.diff
      
      This commit message (any any mistakes therein) were written by Brad
      Fitzpatrick. (Brad migrated the patch to Gerrit and checked CLAs)
      
      Updates #6007
      Fixes #22968
      
      Also updates netbsd/arm to use monotonic time for
      
      Change-Id: If77ef7dc610b3025831d84cdfadfbbba2c52acb2
      Reviewed-on: https://go-review.googlesource.com/81715
      Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
      66fcf454
  2. 02 Dec, 2017 2 commits
    • Brad Fitzpatrick's avatar
      os: clarify docs on Interrupt and Kill · 871b7931
      Brad Fitzpatrick authored
      Note that Interrupt will compile but not work on Windows.
      
      Fixes #22454
      
      Change-Id: If011c32211f4bb45d458317e113b9794d5b4a4b1
      Reviewed-on: https://go-review.googlesource.com/81035Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
      871b7931
    • Ian Lance Taylor's avatar
      os: calling Fd disables the SetDeadline methods · 41534957
      Ian Lance Taylor authored
      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 Fd 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 file 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 File 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 Fd 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(descriptor, true) to change the descriptor, and
      the original File, 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 deadlines mostly work on
      pipes, and there isn't much reason to call Fd on a pipe, and few
      people use SetDeadline, I decided to punt.
      
      Fixes #22934
      
      Change-Id: I2e49e036f0bcf71f5365193831696f9e4120527c
      Reviewed-on: https://go-review.googlesource.com/81636Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
      41534957
  3. 01 Dec, 2017 34 commits
  4. 30 Nov, 2017 1 commit