<feed xmlns='http://www.w3.org/2005/Atom'>
<title>go, branch go1.2rc3</title>
<subtitle>Fork of Go programming language with my patches.</subtitle>
<id>http://git.kilabit.info/go/atom?h=go1.2rc3</id>
<link rel='self' href='http://git.kilabit.info/go/atom?h=go1.2rc3'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/'/>
<updated>2013-11-01T01:44:30Z</updated>
<entry>
<title>go1.2rc3</title>
<updated>2013-11-01T01:44:30Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2013-11-01T01:44:30Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=2eb51b1ba8cbf593124ab95e2ea9efb5d3ddf21e'/>
<id>urn:sha1:2eb51b1ba8cbf593124ab95e2ea9efb5d3ddf21e</id>
<content type='text'>
R=golang-dev, nigeltao
CC=golang-dev
https://golang.org/cl/19560047
</content>
</entry>
<entry>
<title>[release-branch.go1.2] cmd/5l, runtime: fix divide for profiling tracebacks on ARM</title>
<updated>2013-11-01T00:34:40Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2013-11-01T00:34:40Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=4708b76f84e3d5b1e5057d50876f54972969c988'/>
<id>urn:sha1:4708b76f84e3d5b1e5057d50876f54972969c988</id>
<content type='text'>
««« CL 19910044 / 9eb64f5ef3a6
cmd/5l, runtime: fix divide for profiling tracebacks on ARM

Two bugs:
1. The first iteration of the traceback always uses LR when provided,
which it is (only) during a profiling signal, but in fact LR is correct
only if the stack frame has not been allocated yet. Otherwise an
intervening call may have changed LR, and the saved copy in the stack
frame should be used. Fix in traceback_arm.c.

2. The division runtime call adds 8 bytes to the stack. In order to
keep the traceback routines happy, it must copy the saved LR into
the new 0(SP). Change

        SUB $8, SP

into

        MOVW    0(SP), R11 // r11 is temporary, for use by linker
        MOVW.W  R11, -8(SP)

to update SP and 0(SP) atomically, so that the traceback always
sees a saved LR at 0(SP).

Fixes #6681.

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

R=golang-dev
CC=golang-dev
https://golang.org/cl/20170048
</content>
</entry>
<entry>
<title>[release-branch.go1.2] doc/go1.2.html: delete repeated word</title>
<updated>2013-11-01T00:33:51Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2013-11-01T00:33:51Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=1d78c868971effacde64e9c9a8d1ae1bea13be17'/>
<id>urn:sha1:1d78c868971effacde64e9c9a8d1ae1bea13be17</id>
<content type='text'>
««« CL 19840043 / 938b64b0f608
doc/go1.2.html: delete repeated word
TBR=rsc

R=golang-dev
CC=golang-dev
https://golang.org/cl/19840043
»»»

R=golang-dev
CC=golang-dev
https://golang.org/cl/20240044
</content>
</entry>
<entry>
<title>[release-branch.go1.2] doc/go1.2.html: stack sizes, thread limits</title>
<updated>2013-11-01T00:33:03Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2013-11-01T00:33:03Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=28c1081208f1afd9c2a699ab812a9b14b15ae558'/>
<id>urn:sha1:28c1081208f1afd9c2a699ab812a9b14b15ae558</id>
<content type='text'>
««« CL 19600043 / 746466b52725
doc/go1.2.html: stack sizes, thread limits

R=golang-dev, minux.ma, adg, rsc
CC=golang-dev
https://golang.org/cl/19600043
»»»

R=golang-dev
CC=golang-dev
https://golang.org/cl/20110046
</content>
</entry>
<entry>
<title>[release-branch.go1.2] cmd/cgo: accept extra leading _ on __cgodebug_data for all object formats</title>
<updated>2013-11-01T00:32:10Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2013-11-01T00:32:10Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=8648d26c5f89d70cd7d9364a327768e3d91cca3f'/>
<id>urn:sha1:8648d26c5f89d70cd7d9364a327768e3d91cca3f</id>
<content type='text'>
««« CL 19780043 / 8b49cdda6ff4
cmd/cgo: accept extra leading _ on __cgodebug_data for all object formats

The current Windows build breakage appears to be because
the Windows code should be looking for __cgodebug_data
not ___cgodebug_data. Dodge the question everywhere by
accepting both.

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

R=golang-dev
CC=golang-dev
https://golang.org/cl/20660043
</content>
</entry>
<entry>
<title>[release-branch.go1.2] database/sql: document Result methods</title>
<updated>2013-11-01T00:31:18Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2013-11-01T00:31:18Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=63ff715a55c0e9833cd5aab5aa326fe0d764b7c2'/>
<id>urn:sha1:63ff715a55c0e9833cd5aab5aa326fe0d764b7c2</id>
<content type='text'>
««« CL 19280046 / 2ad8ac71220d
database/sql: document Result methods

Fixes #5110

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

R=golang-dev
CC=golang-dev
https://golang.org/cl/20650043
</content>
</entry>
<entry>
<title>[release-branch.go1.2] database/sql: Fix typos in doc</title>
<updated>2013-11-01T00:30:30Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2013-11-01T00:30:30Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=6d10afd9e566ca520aef916bca2a6a75b24fd01f'/>
<id>urn:sha1:6d10afd9e566ca520aef916bca2a6a75b24fd01f</id>
<content type='text'>
««« CL 17590043 / fb5224487f1b
database/sql: Fix typos in doc

R=golang-dev
CC=bradfitz, golang-dev
https://golang.org/cl/17590043

»»»

R=golang-dev
CC=golang-dev
https://golang.org/cl/20150046
</content>
</entry>
<entry>
<title>[release-branch.go1.2] A+C: Jakob Borg (individual CLA).</title>
<updated>2013-11-01T00:29:41Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2013-11-01T00:29:41Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=89f01489554257e297aa787c9d43d9e894729d21'/>
<id>urn:sha1:89f01489554257e297aa787c9d43d9e894729d21</id>
<content type='text'>
««« CL 19510043 / ae106f792e5d
A+C: Jakob Borg (individual CLA).

R=golang-dev
CC=golang-dev
https://golang.org/cl/19510043
»»»

R=golang-dev
CC=golang-dev
https://golang.org/cl/20570045
</content>
</entry>
<entry>
<title>[release-branch.go1.2] time: correct path to time zone zip file on Unix</title>
<updated>2013-11-01T00:28:57Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2013-11-01T00:28:57Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=842a18c28f5b42a77e0d5b8f6bc26f01b771a69b'/>
<id>urn:sha1:842a18c28f5b42a77e0d5b8f6bc26f01b771a69b</id>
<content type='text'>
««« CL 19280043 / 9d199c7582d6
time: correct path to time zone zip file on Unix

Most Unix systems have their own time zone data,
so we almost never get far enough in the list to
discover that we cannot fall back to the zip file.
Adjust testing to exercise the final fallback.

Plan 9 and Windows were already correct
(and are the main users of the zip file).

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/19280043
»»»

R=golang-dev
CC=golang-dev
https://golang.org/cl/20640043
</content>
</entry>
<entry>
<title>[release-branch.go1.2] encoding/xml: fix doc comment</title>
<updated>2013-11-01T00:28:07Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2013-11-01T00:28:07Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=6ab0f588a89ecde66607c0dcefd44de2b9a47dd0'/>
<id>urn:sha1:6ab0f588a89ecde66607c0dcefd44de2b9a47dd0</id>
<content type='text'>
««« CL 19300046 / 5ac568b9d67b
encoding/xml: fix doc comment

The tag is ",chardata" not "chardata".

Fixes #6631.

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/19300046
»»»

R=golang-dev
CC=golang-dev
https://golang.org/cl/20060045
</content>
</entry>
</feed>
