- 19 Mar, 2012 5 commits
-
-
Shenghou Ma authored
R=adg CC=golang-dev https://golang.org/cl/5841050
-
Alex Brainman authored
As discussed on golang-dev, windows will use "\" as path separator. No escaping allowed. R=golang-dev, r, mattn.jp, rsc, rogpeppe, bsiegert, r CC=golang-dev https://golang.org/cl/5825044
-
Andrew Gerrand authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5846065
-
Rob Pike authored
It is unprecedented to add tests to package syscall, especially system-specific ones. Not a policy worth changing right before Go 1 is cut. The sole existing test, passfd_test.go, contains the line // +build linux darwin probablyfreebsd probablyopenbsd which argues that this is not a subject to be undertaking likely. Note that passfd_test.go also went in just now. It's the only test in syscall. Deleting for now, will reconsider after Go 1. R=golang-dev, bradfitz, r, dsymonds CC=golang-dev https://golang.org/cl/5846063
-
Rob Pike authored
We can revisit the issue of testing in syscall after Go 1. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5844057
-
- 18 Mar, 2012 3 commits
-
-
Jeremy Jackins authored
R=golang-dev, r, r CC=golang-dev https://golang.org/cl/5845059
-
Albert Strasheim authored
R=bradfitz, iant CC=golang-dev https://golang.org/cl/5846059
-
Brad Fitzpatrick authored
Updates #1101 R=golang-dev, iant CC=golang-dev https://golang.org/cl/5849057
-
- 17 Mar, 2012 4 commits
-
-
Brad Fitzpatrick authored
Adds new file api/go1.txt, locking down the current API. Any changes to the API will need to update that file. run.bash (but not make.bash, or Windows) will check for accidental API changes. R=golang-dev, dsymonds, rsc CC=golang-dev https://golang.org/cl/5820070
-
Rob Pike authored
They have been deleted from package unsafe. Also delete their appearance in exp/types. Fixes #3338. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5847056
-
Shenghou Ma authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5841054
-
Shenghou Ma authored
R=adg, r CC=golang-dev https://golang.org/cl/5849052
-
- 16 Mar, 2012 12 commits
-
-
Johan Euphrosine authored
R=golang-dev, rsc, r, adg, gri, r CC=golang-dev https://golang.org/cl/5835046
-
Russ Cox authored
This makes the last error-reporting CL a bit less aggressive. errPrintedOutput is a sentinel value that should not be wrapped. R=gri CC=golang-dev https://golang.org/cl/5845052
-
Shenghou Ma authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5841051
-
Robert Griesemer authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5842043
-
Shenghou Ma authored
R=golang-dev, alex.brainman, mattn.jp CC=golang-dev https://golang.org/cl/5843045
-
Shenghou Ma authored
Fixes part of issue 3253. We still need to support scattered relocations though. R=golang-dev, bsiegert, rsc, iant CC=golang-dev https://golang.org/cl/5822050
-
Russ Cox authored
Fixes #3001. (This time for sure!) R=golang-dev, r, fullung CC=golang-dev https://golang.org/cl/5845044
-
David Symonds authored
Fixes #3330. R=golang-dev, r CC=golang-dev https://golang.org/cl/5847043
-
Christopher Redden authored
Same fix as applied here: https://golang.org/cl/5761044 Fixes #3222. R=golang-dev, alex.brainman, rsc CC=golang-dev https://golang.org/cl/5838043
-
David Symonds authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5841044
-
Russ Cox authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5845043
-
Russ Cox authored
There was a small window during program initialization where a signal could come in before the handling mechanisms were set up to handle it. Delay the signal-handler installation until we're ready for the signals. Fixes #3314. R=golang-dev, dsymonds, mikioh.mikioh CC=golang-dev https://golang.org/cl/5833049
-
- 15 Mar, 2012 16 commits
-
-
Yasuhiro Matsumoto authored
windows cmd.exe can't show utf-8 correctly basically. chcp 65001 may make it show, but most people don't have fonts which can show it. R=golang-dev, rsc, adg, gri, r CC=golang-dev https://golang.org/cl/5820060
-
Rémy Oudompheng authored
A "gccgoprefix" flag is added and used by the go tool, to mirror the -fgo-prefix flag for gccgo, whose value is required to know how to access functions from C. Trying to export Go methods or unexported Go functions will not work. Also fix go test on "main" packages. Updates #2313. Fixes #3262. R=mpimenov, rsc, iant CC=golang-dev https://golang.org/cl/5797046
-
Brad Fitzpatrick authored
Fixes #3317 R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5784083
-
Brad Fitzpatrick authored
This should've been behind -v before but was missed. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5836046
-
Russ Cox authored
TBR=golang-dev CC=golang-dev https://golang.org/cl/5832047
-
Russ Cox authored
Fixes #3324. Robert suggested not reporting errors until the end of the output. which I'd also like to do, but errPrintedOutput makes that a bigger change than I want to do before Go 1. This change should at least remove the confusion we had. # Building packages and commands for linux/amd64. runtime errors sync/atomic unicode unicode/utf8 math sync unicode/utf16 crypto/subtle io syscall hash crypto crypto/md5 hash/crc32 crypto/cipher crypto/hmac crypto/sha1 go install unicode: copying /tmp/go-build816525784/unicode.a to /home/rsc/g/go/pkg/linux_amd64/unicode.a: short write hash/adler32 container/list container/ring ... R=golang-dev, r CC=golang-dev https://golang.org/cl/5837054
-
Francisco Souza authored
Originally published on The Go Programming Language Blog, March 24, 2011. http://blog.golang.org/2011/03/gobs-of-data.html R=adg CC=golang-dev https://golang.org/cl/5834043
-
Andrew Gerrand authored
This leaves only the project page, which now resides at the web root. R=golang-dev, bsiegert, rsc CC=golang-dev https://golang.org/cl/5833044
-
Russ Cox authored
R=golang-dev, bradfitz, r CC=golang-dev https://golang.org/cl/5824053
-
Russ Cox authored
Fixes #3310. R=golang-dev, r CC=golang-dev https://golang.org/cl/5823051
-
Russ Cox authored
Fixes #3323. R=golang-dev, remyoudompheng, gri CC=golang-dev https://golang.org/cl/5837047
-
Russ Cox authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/5820064
-
Russ Cox authored
srcLink includes the / now; adding another yields //, which means something else entirely in URLs. Fixes #3327. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5823060
-
Stefan Nilsson authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5833047
-
Brad Fitzpatrick authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5834049
-
Yasuhiro Matsumoto authored
R=golang-dev CC=golang-dev https://golang.org/cl/5823058
-