1. 17 Dec, 2012 20 commits
  2. 16 Dec, 2012 2 commits
  3. 15 Dec, 2012 2 commits
  4. 14 Dec, 2012 6 commits
  5. 13 Dec, 2012 10 commits
    • Ian Lance Taylor's avatar
      test: s/float/float32/ · cc5682dc
      Ian Lance Taylor authored
      I just committed a patch to gccgo that notices that float was
      never defined, causing an additional unmatched error message.
      Rename the type to avoid that message.
      
      R=golang-dev, minux.ma
      CC=golang-dev
      https://golang.org/cl/6947049
      cc5682dc
    • Nick Craig-Wood's avatar
      os: Improve the accuracy of os.Chtimes · 473441fc
      Nick Craig-Wood authored
      I've been writing some code which involves syncing files (like
      rsync) and it became apparent that under Linux I could read
      modification times (os.Lstat) with nanosecond precision but
      only write them with microsecond precision.  This difference
      in precision is rather annoying when trying to discover
      whether files need syncing or not!
      
      I've patched syscall and os to increases the accuracy of of
      os.Chtimes for Linux and Windows.  This involved exposing the
      utimensat system call under Linux and a bit of extra code
      under Windows.  I decided not to expose the "at" bit of the
      system call as it is impossible to replicate under Windows, so
      the patch adds syscall.Utimens() to all architectures along
      with a ImplementsUtimens flag.
      
      If the utimensat syscall isn't available (utimensat was added
      to Linux in 2.6.22, Released, 8 July 2007) then it silently
      falls back to the microsecond accuracy version it uses now.
      The improved accuracy for Windows should be good for all
      versions of Windows.
      
      Unfortunately Darwin doesn't seem to have a utimensat system
      call that I could find so I couldn't implement it there.  The
      BSDs do, but since they share their syscall implementation
      with Darwin I couldn't figure out how to define a syscall for
      *BSD and not Darwin.  I've left this as a TODO in the code.
      
      In the process I implemented the missing methods for Timespec
      under Windows which I needed which just happened to round out
      the Timespec API for all platforms!
      
      ------------------------------------------------------------
      
      Test code: http://play.golang.org/p/1xnGuYOi4b
      
      Linux Before (1000 ns precision)
      
      $ ./utimetest.linux.before z
      Setting mtime 1344937903123456789: 2012-08-14 10:51:43.123456789 +0100 BST
      Reading mtime 1344937903123457000: 2012-08-14 10:51:43.123457 +0100 BST
      
      Linux After (1 ns precision)
      
      $ ./utimetest.linux.after z
      Setting mtime 1344937903123456789: 2012-08-14 10:51:43.123456789 +0100 BST
      Reading mtime 1344937903123456789: 2012-08-14 10:51:43.123456789 +0100 BST
      
      Windows Before (1000 ns precision)
      
      X:\>utimetest.windows.before.exe c:\Test.txt
      Setting mtime 1344937903123456789: 2012-08-14 10:51:43.123456789 +0100 GMTDT
      Reading mtime 1344937903123456000: 2012-08-14 10:51:43.123456 +0100 GMTDT
      
      Windows After (100 ns precision)
      
      X:\>utimetest.windows.after.exe c:\Test.txt
      Setting mtime 1344937903123456789: 2012-08-14 10:51:43.123456789 +0100 GMTDT
      Reading mtime 1344937903123456700: 2012-08-14 10:51:43.1234567 +0100 GMTDT
      
      R=golang-dev, alex.brainman, rsc, bradfitz
      CC=golang-dev
      https://golang.org/cl/6905057
      473441fc
    • Brad Fitzpatrick's avatar
      A+C: Nick Craig-Wood (individual CLA) · 7b4bb048
      Brad Fitzpatrick authored
      Generated by addca.
      
      R=gobot
      CC=golang-dev
      https://golang.org/cl/6938051
      7b4bb048
    • Ian Lance Taylor's avatar
      test: move map delete test to nil.go · 9509cbf2
      Ian Lance Taylor authored
      No need for a separate test for this.
      
      R=golang-dev, minux.ma, rsc
      CC=golang-dev
      https://golang.org/cl/6941045
      9509cbf2
    • Dave Cheney's avatar
      cmd/{5,6,8}g: reduce size of Prog and Addr · b2797f2a
      Dave Cheney authored
      5g: Prog went from 128 bytes to 88 bytes
      6g: Prog went from 174 bytes to 144 bytes
      8g: Prog went from 124 bytes to 92 bytes
      
      There may be a little more that can be squeezed out of Addr, but alignment will be a factor.
      
      All: remove the unused pun field from Addr
      
      R=rsc, minux.ma
      CC=golang-dev
      https://golang.org/cl/6922048
      b2797f2a
    • Shenghou Ma's avatar
      test/nil.go: delete on nil maps no longer panics · 0df58a4b
      Shenghou Ma authored
      Fix the build.
      
      R=golang-dev
      CC=golang-dev
      https://golang.org/cl/6946044
      0df58a4b
    • Shenghou Ma's avatar
      runtime: deletion on nil maps is a no-op now · 28a50c7f
      Shenghou Ma authored
      Fixes #4535.
      
      R=golang-dev, rsc
      CC=golang-dev
      https://golang.org/cl/6942044
      28a50c7f
    • Shenghou Ma's avatar
      lib/godoc/example.html: htmlify the play code · e470b335
      Shenghou Ma authored
      Fixes #4539.
      
      R=golang-dev, dsymonds
      CC=golang-dev
      https://golang.org/cl/6942043
      e470b335
    • Shenghou Ma's avatar
      io: SectionReader.ReadAt should return EOF when buf is not fully read · 31eedd7f
      Shenghou Ma authored
      Fixes #4392.
      
      R=golang-dev, rsc
      CC=golang-dev
      https://golang.org/cl/6858062
      31eedd7f
    • Mikio Hara's avatar
      net: make TestDialTimeoutFDLeak a bit robust · feb509c7
      Mikio Hara authored
      TestDialTimeoutFDLeak will fail when system state somaxconn is
      greater than expected fixed value.
      
      Fixes #4384 (again).
      
      R=fullung, dave, rsc
      CC=golang-dev
      https://golang.org/cl/6873069
      feb509c7