<feed xmlns='http://www.w3.org/2005/Atom'>
<title>go, branch go1.2.2</title>
<subtitle>Fork of Go programming language with my patches.</subtitle>
<id>http://git.kilabit.info/go/atom?h=go1.2.2</id>
<link rel='self' href='http://git.kilabit.info/go/atom?h=go1.2.2'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/'/>
<updated>2014-05-05T17:43:37Z</updated>
<entry>
<title>go1.2.2</title>
<updated>2014-05-05T17:43:37Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2014-05-05T17:43:37Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=43d00b0942c1c6f43993ac71e1eea48e62e22b8d'/>
<id>urn:sha1:43d00b0942c1c6f43993ac71e1eea48e62e22b8d</id>
<content type='text'>
R=rsc, bradfitz
CC=golang-codereviews, golang-dev
https://golang.org/cl/95010046
</content>
</entry>
<entry>
<title>[release-branch.go1.2] doc: document go1.2.2</title>
<updated>2014-05-05T17:21:58Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2014-05-05T17:21:58Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=2c19e64da03e06c56eee90b5a3717b526ae6604e'/>
<id>urn:sha1:2c19e64da03e06c56eee90b5a3717b526ae6604e</id>
<content type='text'>
««« CL 100110043 / 51dc50080c9f
doc: document go1.2.2

R=rsc, bradfitz
CC=golang-codereviews
https://golang.org/cl/100110043
»»»

R=iant
CC=golang-codereviews, golang-dev
https://golang.org/cl/98960043
</content>
</entry>
<entry>
<title>go1.2.1</title>
<updated>2014-03-03T00:53:08Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2014-03-03T00:53:08Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=9c9802fad57c1bcb72ea98c5c55ea2652efc5772'/>
<id>urn:sha1:9c9802fad57c1bcb72ea98c5c55ea2652efc5772</id>
<content type='text'>
R=minux.ma, r
CC=golang-codereviews, golang-dev
https://golang.org/cl/70650043
</content>
</entry>
<entry>
<title>[release-branch.go1.2] doc: document Go 1.2.1</title>
<updated>2014-03-03T00:49:00Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2014-03-03T00:49:00Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=f4e8e6d0f8a5d9889a7be11c455f2880d62706c8'/>
<id>urn:sha1:f4e8e6d0f8a5d9889a7be11c455f2880d62706c8</id>
<content type='text'>
Note the installation instructions change doesn't apply here,
so I had to patch this in manually instead of using release-apply.

R=minux.ma, r
CC=golang-codereviews, golang-dev
https://golang.org/cl/69860047
</content>
</entry>
<entry>
<title>[release-branch.go1.2] runtime: fix crash in runtime.GoroutineProfile</title>
<updated>2014-02-28T22:13:59Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2014-02-28T22:13:59Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=1685fbd1845ec9778158a82dcaf96cf154c5376d'/>
<id>urn:sha1:1685fbd1845ec9778158a82dcaf96cf154c5376d</id>
<content type='text'>
This CL is not exactly a copy of the original quoted below.
This CL omits the changes made to mgc0.c in the original.
Those changes do not apply cleanly to the Go 1.2 tree,
and they were cosmetic, simplifying code that was already
doing the right thing.

To double-check that omitting the mgc0.c change has not
invalidated the fix, I have verified by hand that the test program
in issue 6946 fails without this CL and passes with this CL.

««« CL 41640043 / e4c381446b48
runtime: fix crash in runtime.GoroutineProfile

This is a possible Go 1.2.1 candidate.

Fixes #6946.

R=iant, r
CC=golang-dev
https://golang.org/cl/41640043
»»»

LGTM=adg
R=adg
CC=golang-codereviews, golang-dev, iant, r
https://golang.org/cl/68820045
</content>
</entry>
<entry>
<title>[release-branch.go1.2] runtime: if traceback sees a breakpoint, don't change the PC</title>
<updated>2014-02-28T03:43:47Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2014-02-28T03:43:47Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=0d2f5c0e3b4cddd4bd8349169e0c29e0862b44e3'/>
<id>urn:sha1:0d2f5c0e3b4cddd4bd8349169e0c29e0862b44e3</id>
<content type='text'>
««« CL 49580044 / 38cd458b1dfe
runtime: if traceback sees a breakpoint, don't change the PC

Changing the PC confuses gdb, because execution does not
continue where gdb expects it.  Not changing the PC has the
potential to confuse a stack dump, but when running under gdb
it seems better to confuse a stack dump than to confuse gdb.

Fixes #6776.

LGTM=rsc
R=golang-codereviews, dvyukov, rsc
CC=golang-codereviews
https://golang.org/cl/49580044
»»»

LGTM=r
R=golang-codereviews, r
CC=golang-dev
https://golang.org/cl/69800043
</content>
</entry>
<entry>
<title>[release-branch.go1.2] runtime: fix data race in GC</title>
<updated>2014-02-28T03:43:34Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2014-02-28T03:43:34Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=495b91430f7914b221d7507e60b065733e2d34c4'/>
<id>urn:sha1:495b91430f7914b221d7507e60b065733e2d34c4</id>
<content type='text'>
««« CL 52090045 / 302bdb5b08b1
runtime: fix data race in GC
Fixes #5139.
Update #7065.

R=golang-codereviews, bradfitz, minux.ma
CC=golang-codereviews
https://golang.org/cl/52090045
»»»

LGTM=r
R=golang-codereviews, r
CC=golang-dev
https://golang.org/cl/69790043
</content>
</entry>
<entry>
<title>[release-branch.go1.2] net: ignore some errors in windows Accept</title>
<updated>2014-02-28T03:43:23Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2014-02-28T03:43:23Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=950555c812437f0a4acd5cbb913a64fd328d50aa'/>
<id>urn:sha1:950555c812437f0a4acd5cbb913a64fd328d50aa</id>
<content type='text'>
««« CL 49490043 / 7ecbc2b8ec97
net: ignore some errors in windows Accept

Fixes #6987

R=golang-codereviews, dvyukov
CC=golang-codereviews
https://golang.org/cl/49490043
»»»

LGTM=r
R=golang-codereviews, r
CC=golang-dev
https://golang.org/cl/69780044
</content>
</entry>
<entry>
<title>[release-branch.go1.2] database/sql: Use all connections in pool</title>
<updated>2014-02-28T03:43:10Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2014-02-28T03:43:10Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=d905670c2ee3efe6b08d6c8de292be46f1e1eca1'/>
<id>urn:sha1:d905670c2ee3efe6b08d6c8de292be46f1e1eca1</id>
<content type='text'>
««« CL 40410043 / 8a7ac002f840
database/sql: Use all connections in pool

The last connection in the pool was not being handed out correctly.

R=golang-codereviews, gobot, bradfitz
CC=golang-codereviews
https://golang.org/cl/40410043

»»»

LGTM=r
R=golang-codereviews, r
CC=golang-dev
https://golang.org/cl/68820044
</content>
</entry>
<entry>
<title>go1.2</title>
<updated>2013-11-28T21:32:31Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2013-11-28T21:32:31Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=402d3590b54e4a0df9fb51ed14b2999e85ce0b76'/>
<id>urn:sha1:402d3590b54e4a0df9fb51ed14b2999e85ce0b76</id>
<content type='text'>
R=golang-dev
CC=golang-dev
https://golang.org/cl/34820044
</content>
</entry>
</feed>
