1. 11 Mar, 2013 11 commits
  2. 10 Mar, 2013 8 commits
  3. 09 Mar, 2013 8 commits
  4. 08 Mar, 2013 11 commits
  5. 07 Mar, 2013 2 commits
    • Akshat Kumar's avatar
      syscall: Plan 9: use lightweight errstr in entersyscall mode · a566deac
      Akshat Kumar authored
      Change 231af8ac63aa (CL 7314062) made runtime.enteryscall()
      set m->mcache = nil, which means that we can no longer use
      syscall.errstr in syscall.Syscall and syscall.Syscall6, since it
      requires a new buffer to be allocated for holding the error string.
      Instead, we use pre-allocated per-M storage to hold error strings
      from syscalls made while in entersyscall mode, and call
      runtime.findnull to calculate the lengths.
      
      Fixes #4994.
      
      R=rsc, rminnich, ality, dvyukov, rminnich, r
      CC=golang-dev
      https://golang.org/cl/7567043
      a566deac
    • Mikio Hara's avatar
      net: fix multicast listener tests · 2ac799cf
      Mikio Hara authored
      This CL splits multicast listener tests into two; for IPv4 and
      for IPv6. It also removes redundant test inputs and makes sure
      that assignment of multicast interface to stablize the tests.
      
      Fixes #4059.
      
      R=golang-dev, bradfitz
      CC=golang-dev
      https://golang.org/cl/7565043
      2ac799cf