An error occurred fetching the project authors.
  1. 09 Oct, 2014 2 commits
  2. 19 Sep, 2014 1 commit
  3. 08 Sep, 2014 1 commit
  4. 22 Jul, 2013 1 commit
    • Alex Brainman's avatar
      net: implement netpoll for windows · 6ea7bf25
      Alex Brainman authored
      Moves the network poller from net package into runtime.
      
      benchmark                           old ns/op    new ns/op    delta
      BenchmarkTCP4OneShot                   316386       287061   -9.27%
      BenchmarkTCP4OneShot-2                 339822       313424   -7.77%
      BenchmarkTCP4OneShot-3                 330057       306589   -7.11%
      BenchmarkTCP4OneShotTimeout            341775       287061  -16.01%
      BenchmarkTCP4OneShotTimeout-2          380835       295849  -22.32%
      BenchmarkTCP4OneShotTimeout-3          398412       328070  -17.66%
      BenchmarkTCP4Persistent                 40622        33392  -17.80%
      BenchmarkTCP4Persistent-2               44528        35736  -19.74%
      BenchmarkTCP4Persistent-3               44919        36907  -17.84%
      BenchmarkTCP4PersistentTimeout          45309        33588  -25.87%
      BenchmarkTCP4PersistentTimeout-2        50289        38079  -24.28%
      BenchmarkTCP4PersistentTimeout-3        51559        37103  -28.04%
      BenchmarkTCP6OneShot                   361305       345645   -4.33%
      BenchmarkTCP6OneShot-2                 361305       331976   -8.12%
      BenchmarkTCP6OneShot-3                 376929       347598   -7.78%
      BenchmarkTCP6OneShotTimeout            361305       322212  -10.82%
      BenchmarkTCP6OneShotTimeout-2          378882       333928  -11.86%
      BenchmarkTCP6OneShotTimeout-3          388647       335881  -13.58%
      BenchmarkTCP6Persistent                 47653        35345  -25.83%
      BenchmarkTCP6Persistent-2               49215        35736  -27.39%
      BenchmarkTCP6Persistent-3               38474        37493   -2.55%
      BenchmarkTCP6PersistentTimeout          56637        34369  -39.32%
      BenchmarkTCP6PersistentTimeout-2        42575        38079  -10.56%
      BenchmarkTCP6PersistentTimeout-3        44137        37689  -14.61%
      
      R=dvyukov
      CC=golang-dev
      https://golang.org/cl/8670044
      6ea7bf25
  5. 19 Dec, 2011 1 commit
  6. 16 Dec, 2011 3 commits
    • Russ Cox's avatar
      runtime: hg revert -r 6ec0a5c12d75 · 86dcc431
      Russ Cox authored
      That was the last build that was close to working.
      I will try that change again next week.
      Make is being very subtle today.
      
      At the reverted-to CL, the ARM traceback appears
      to be broken.  I'll look into that next week too.
      
      R=golang-dev, r
      CC=golang-dev
      https://golang.org/cl/5492063
      86dcc431
    • Russ Cox's avatar
      runtime: separate out auto-generated files · bd9243da
      Russ Cox authored
      R=golang-dev, r, r
      CC=golang-dev
      https://golang.org/cl/5493063
      bd9243da
    • Russ Cox's avatar
      runtime: make more build-friendly · 851f3013
      Russ Cox authored
      Collapse the arch,os-specific directories into the main directory
      by renaming xxx/foo.c to foo_xxx.c, and so on.
      
      There are no substantial edits here, except to the Makefile.
      The assumption is that the Go tool will #define GOOS_darwin
      and GOARCH_amd64 and will make any file named something
      like signals_darwin.h available as signals_GOOS.h during the
      build.  This replaces what used to be done with -I$(GOOS).
      
      There is still work to be done to make runtime build with
      standard tools, but this is a big step.  After this we will have
      to write a script to generate all the generated files so they
      can be checked in (instead of generated during the build).
      
      R=r, iant, r, lucio.dere
      CC=golang-dev
      https://golang.org/cl/5490053
      851f3013
  7. 11 Nov, 2011 1 commit