- 09 Jun, 2013 6 commits
-
-
Dmitriy Vyukov authored
Removes code duplication. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/9874055
-
Shenghou Ma authored
R=golang-dev, dave, adg, remyoudompheng, r CC=golang-dev https://golang.org/cl/6845083
-
Shenghou Ma authored
Fixes #5603. R=iant, dave CC=gobot, golang-dev https://golang.org/cl/9895043
-
Shenghou Ma authored
R=golang-dev, iant CC=golang-dev https://golang.org/cl/10107044
-
Shenghou Ma authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/10099045
-
Shenghou Ma authored
R=golang-dev, bradfitz, khr, r CC=golang-dev https://golang.org/cl/7461046
-
- 07 Jun, 2013 3 commits
-
-
Roger Peppe authored
R=rsc, minux.ma, r CC=golang-dev https://golang.org/cl/10110043
-
Ian Lance Taylor authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/10036047
-
Andrew Gerrand authored
Fixes #5075. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/10084044
-
- 06 Jun, 2013 5 commits
-
-
Dmitriy Vyukov authored
Remove alignment logic as well, it's not respected by chanbuf() anyway. R=golang-dev, dave, minux.ma, r, iant, rsc CC=golang-dev https://golang.org/cl/9678046
-
Dmitriy Vyukov authored
Count only number of frees, everything else is derivable and does not need to be counted on every malloc. benchmark old ns/op new ns/op delta BenchmarkMalloc8 68 66 -3.07% BenchmarkMalloc16 75 70 -6.48% BenchmarkMallocTypeInfo8 102 97 -4.80% BenchmarkMallocTypeInfo16 108 105 -2.78% R=golang-dev, dave, rsc CC=golang-dev https://golang.org/cl/9776043
-
Alex Brainman authored
Use http://unicode.org/cldr/data/common/supplemental/windowsZones.xml to generate the map. Fixes #4838. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/9997043
-
Robert Obryk authored
WriteFile should not successfully return if the file's Close call failed. Fixes #5644. R=golang-dev, kr, r CC=golang-dev https://golang.org/cl/10067043
-
Patrick Higgins authored
Fixes #4996 R=golang-dev, r, bradfitz CC=golang-dev https://golang.org/cl/7547043
-
- 05 Jun, 2013 10 commits
-
-
Russ Cox authored
Already fixed independently in Plan 9. R=ken2 CC=golang-dev https://golang.org/cl/10041044
-
Russ Cox authored
Needed to link code compiled with 6c -N. R=ken2 CC=golang-dev https://golang.org/cl/10043044
-
Russ Cox authored
Should reduce size of CL 9868044. R=golang-dev, ality CC=golang-dev https://golang.org/cl/10045043
-
Russ Cox authored
CFLAGS comes before CPPFLAGS. Also fix one typo CPPCFLAGS. Cleanup for CL 8248043. R=golang-dev, iant, alberto.garcia.hierro CC=golang-dev https://golang.org/cl/9965045
-
Brad Fitzpatrick authored
It was never tested and also breaks Windows. run.go doesn't yet support the proper !windows,!plan9 syntax. ««« original CL description test: do not run SIGCHLD test on Plan 9 R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/10017045 »»» R=golang-dev, dave CC=golang-dev https://golang.org/cl/10024044
-
Anthony Martin authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/10028043
-
Nigel Tao authored
subsampling or chroma subsampling. Fixes #5569. R=r CC=golang-dev https://golang.org/cl/9900044
-
Anthony Martin authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/10017045
-
Anthony Martin authored
R=golang-dev, iant CC=golang-dev https://golang.org/cl/10010046
-
Adam Langley authored
The significant change between TLS 1.0 and 1.1 is the addition of an explicit IV in the case of CBC encrypted records. Support for TLS 1.1 is needed in order to support TLS 1.2. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/7880043
-
- 04 Jun, 2013 14 commits
-
-
Adam Langley authored
This change ensures that error messages always start with "asn1: ". R=golang-dev, gedimitr CC=golang-dev https://golang.org/cl/9751043
-
Anthony Martin authored
Changeset 7557a627e9b5 added a temporary stop-gap to silence a print format warning for %S. This has been reverted. None of this code is original. It was copied from the latest Plan 9 compilers. R=golang-dev, r, rsc CC=golang-dev https://golang.org/cl/8630044
-
Carl Shapiro authored
Each of the backends has two prototypes for this function but no corresponding definition. R=golang-dev, bradfitz, khr CC=golang-dev https://golang.org/cl/9930045
-
Anthony Martin authored
Revision 01810e5c68e9 added the following to src/pkg/runtime/stack.h: StackPreempt = (uintptr)(intptr)0xffffade, The typedef for intptr is defined in two places: 1. src/pkg/runtime/runtime.h for use by the runtime 2. include/u.h for use by the compilers and linkers On Plan 9, we don't use include/u.h but instead augment the host's u.h with extra typedefs. These are in include/plan9/GOARCH/u.h. We forgot to add intptr. It didn't cause a problem until now since that typedef was never used outside the runtime. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/10023043
-
Andrew Gerrand authored
R=golang-dev CC=golang-dev https://golang.org/cl/10019045
-
Rémy Oudompheng authored
These functions were introduced by revision 139919984600 and should not show up on profiles for consistency. R=golang-dev, iant CC=golang-dev https://golang.org/cl/10003043
-
Anthony Martin authored
Fixes #5419. R=golang-dev, dave, minux.ma, rsc CC=golang-dev https://golang.org/cl/9241044
-
Anthony Martin authored
Normally the codereview plugin disables adding new commits when not using the submit command. Unfortunately this makes it impossible to use the Mercurial Queues extension at the same time. A feature called "Phases" was introduced in Mercurial 2.1 that allows marking commits as being secret; this means they will never be pushed to the upstream repository. We can take advantage of this feature to allow the use of Mercurial Queues if the mq.secret option has been set in hgrc(5) and a recent version of Mercurial is used. R=golang-dev, rsc, minux.ma CC=golang-dev https://golang.org/cl/7398055
-
Anthony Martin authored
These two symbols don't show up in the Go symbol table since they're defined in dodata which is called sometime after symtab. They do, however, show up in the ELF symbol table. This regression was introduced in changeset 01c40d533367. Also, remove the corresponding strings from the ELF strtab section now that they're unused. R=golang-dev, iant CC=golang-dev https://golang.org/cl/8650043
-
Ian Lance Taylor authored
Fixes #5621. R=golang-dev, cshapiro, r, fullung CC=golang-dev https://golang.org/cl/9988043
-
Rémy Oudompheng authored
On amd64 benchmark old ns/op new ns/op delta BenchmarkHashStringSpeed 91 74 -18.49% BenchmarkHashInt32Speed 54 45 -17.88% BenchmarkHashInt64Speed 76 58 -23.53% BenchmarkHashStringArraySpeed 231 188 -18.61% Fixes #5367. R=golang-dev, iant, dave, daniel.morsing, ality, rsc CC=golang-dev https://golang.org/cl/9040043
-
Rémy Oudompheng authored
Fixes #5614. R=golang-dev CC=golang-dev https://golang.org/cl/9953044
-
Andrew Gerrand authored
R=golang-dev, dsymonds, r CC=golang-dev https://golang.org/cl/9961043
-
Alex Brainman authored
New version of cmd/cgo from https://golang.org/cl/9574043/ is used to regenerate these. R=golang-dev, iant CC=golang-dev https://golang.org/cl/9679046
-
- 03 Jun, 2013 2 commits
-
-
Russ Cox authored
Remove unnecessary ( ) around == in && clause. Add { } around multiline if body, even though it's one statement. Add runtime: prefix to printed errors. R=cshapiro, iant CC=golang-dev https://golang.org/cl/9685047
-
Rob Pike authored
Fixes #5566. R=rsc CC=gobot, golang-dev https://golang.org/cl/9882043
-