- 15 Feb, 2012 8 commits
-
-
Andrew Gerrand authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5677046
-
Andrew Gerrand authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5649087
-
Andrew Gerrand authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5672048
-
Brad Fitzpatrick authored
R=golang-dev, adg, bradfitz, r CC=golang-dev https://golang.org/cl/5675053
-
Gustavo Niemeyer authored
R=golang-dev, adg CC=golang-dev https://golang.org/cl/5677043
-
Gustavo Niemeyer authored
Changeset 36c9c7810f14 broke support for grsec-patched kernels. Those do not give back the address requested without MAP_FIXED, so when verifying an mmap without this flag for success, the resulting address must not be compared against the requested address since it may have succeeded at a different location. R=golang-dev, rsc, gustavo, iant CC=golang-dev https://golang.org/cl/5650072
-
Brad Fitzpatrick authored
copy of strings/reader{,_test}.go with a few s/string/[]byte/ Fixes #2861 R=adg, rsc, r CC=golang-dev https://golang.org/cl/5666044
-
Brad Fitzpatrick authored
Apparently some distros don't let you ptrace attach to your own existing processes. Run strace on the child directly, instead, which reportedly is more often allowed, and makes the code simpler too. R=golang-dev, n13m3y3r CC=golang-dev https://golang.org/cl/5675050
-
- 14 Feb, 2012 32 commits
-
-
Andrew Gerrand authored
R=gri CC=golang-dev https://golang.org/cl/5675049
-
David Symonds authored
Before this, make.bash --dist-tool would fail, because $GOROOT/bin/tool was being mkdir'd instead of $GOROOT/pkg/tool/linux_amd64. R=rsc CC=golang-dev https://golang.org/cl/5666046
-
Robert Griesemer authored
- if a package path leads to subdirectories only, show command instead, if any - to force documentation for a command, use the cmd/ prefix, as in: godoc cmd/go (note that for the go command, the prefix is not required since there is no actual go library package at the moment) Fixes #3012. R=rsc CC=golang-dev https://golang.org/cl/5665049
-
David Symonds authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5647063
-
Russ Cox authored
* add -work option to save temporary files (Fixes issue 2980) * fix go test -i to work with cgo packages (Fixes issue 2936) * do not overwrite/remove empty directories or non-object files during build (Fixes issue 2829) * remove package main vs package non-main heuristic: a directory must contain only one package (Fixes issue 2864) * to make last item workable, ignore +build tags for files named on command line: go build x.go builds x.go even if it says // +build ignore. * add // +build ignore tags to helper programs R=golang-dev, r, r CC=golang-dev https://golang.org/cl/5674043
-
Maxim Pimenov authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5669046
-
Rémy Oudompheng authored
before after go test -short time 4.144s 1.215s go test -short runtime 1.315s 0.351s go test -short -cpu=1,2,4 runtime 4.376s 1.266s Partially solves issue 3015. R=golang-dev, r CC=golang-dev, remy https://golang.org/cl/5673045
-
Rémy Oudompheng authored
Also eliminate some warnings in builds. R=golang-dev, fullung, iant, rsc CC=golang-dev, remy https://golang.org/cl/5650066
-
Anthony Martin authored
This lets us get rid of the OS-dependent implementations of SyscallError. The name "Err" was chosen to match the PathError type. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5651084
-
Russ Cox authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/5649089
-
Robert Griesemer authored
Also added -files flag to provide regexp for test files for selective testing. Fixes #2956. R=rsc CC=golang-dev https://golang.org/cl/5657045
-
Mikio Hara authored
This CL avoids net.Listen("tcp", ":80"), http.ListenAdnServe(":80") prefer an IPv6 listen. R=rsc CC=golang-dev https://golang.org/cl/5669043
-
Shenghou Ma authored
also fixes this bug in net/http/httptest. R=golang-dev, r CC=golang-dev https://golang.org/cl/5654083
-
Russ Cox authored
This change shows all the information present in the Time value (now including fractional seconds) and also arranges the fields so that, within a single time zone, string comparison and time comparison agree. R=golang-dev, rogpeppe, r CC=golang-dev https://golang.org/cl/5654078
-
Adam Langley authored
hg massively messed up a simple merge for 9d7addec2635 in what I can only imagine was a public service announcement that everyone should use git. R=golang-dev CC=golang-dev https://golang.org/cl/5668043
-
Russ Cox authored
Not causing problems yet, but no need to keep using cygwin paths now that we're off cygwin. R=alex.brainman CC=golang-dev https://golang.org/cl/5656053
-
Russ Cox authored
It is possible that Linux and Windows copy the FP control word from the parent thread when creating a new thread. Empirically, Darwin does not. Reset the FP control world in all cases. Enable the floating-point strconv test. Fixes #2917 (again). R=golang-dev, r, iant CC=golang-dev https://golang.org/cl/5660047
-
Andrew Gerrand authored
Fixes #2930. R=r, gri, rsc CC=golang-dev https://golang.org/cl/5657048
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/5666043
-
Brad Fitzpatrick authored
Fixes #3014 R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5665043
-
Andrew Gerrand authored
R=bsiegert, rsc, r CC=golang-dev https://golang.org/cl/5605047
-
Mikio Hara authored
R=rsc, bradfitz CC=golang-dev https://golang.org/cl/5661055
-
Mikio Hara authored
This CL provides regenerated z-files for OpenBSD 5.0 stable. Also fixes OpenBSD build. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5656052
-
Russ Cox authored
Once we've evicted all the blocked I/O, the ref count should go to zero quickly, so it should be safe to postpone the close(2) until then. Fixes #1898. Fixes #2116. Fixes #2122. R=golang-dev, mikioh.mikioh, bradfitz, fullung, iant CC=golang-dev https://golang.org/cl/5649076
-
Ian Lance Taylor authored
Alpha GNU/Linux does not have /proc/net/igmp[6]. R=golang-dev, rsc, bradfitz CC=golang-dev https://golang.org/cl/5663047
-
Russ Cox authored
Also check for old and exp. Fixes #2764. Fixes #2765. R=golang-dev, r CC=golang-dev https://golang.org/cl/5654068
-
Daniel Krech authored
Fixes #2895. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5651055
-
Russ Cox authored
R=golang-dev, gri, bradfitz CC=golang-dev https://golang.org/cl/5658046
-
Russ Cox authored
Filed issue 3016 to fix this, but I really want to see a "ok" in the Windows column so we know what is and is not working. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5658050
-
Brad Fitzpatrick authored
Now with a bit more paranoia and lower number of requests to keep it under the default OS X 256 fd limit. R=golang-dev, dsymonds, rsc CC=golang-dev https://golang.org/cl/5659051
-
Russ Cox authored
Typing ^\ delivers the SIGQUIT to all threads, it appears. R=golang-dev, r, iant CC=golang-dev https://golang.org/cl/5657044
-
Russ Cox authored
TBR=r CC=golang-dev https://golang.org/cl/5661053
-