- 18 Nov, 2009 27 commits
-
-
Russ Cox authored
7x speedup on big and crypto/rsa unit tests. also dropped useAsm in favor of making the asm stubs jump to the Go versions. R=agl1 CC=golang-dev, gri https://golang.org/cl/157062
-
William Josephson authored
R=rsc https://golang.org/cl/156077
-
William Josephson authored
R=rsc https://golang.org/cl/157065
-
William Josephson authored
R=rsc https://golang.org/cl/156075
-
Devon H. O'Dell authored
In thread.c, we need to cast to whatever the native size of intptr is on the system, but we only have uintptr available. They're the same size, but can't do signed casts without this one :). R=rsc CC=golang-dev https://golang.org/cl/156073
-
Russ Cox authored
R=dho CC=golang-dev https://golang.org/cl/156067
-
Devon H. O'Dell authored
This patchset gets Go to pretty much the same state that FreeBSD/amd64 is in. R=rsc https://golang.org/cl/157055
-
Eden Li authored
unsafe.Pointer. Fixes #254. R=rsc https://golang.org/cl/157060
-
-
Evan Shaw authored
R=rsc https://golang.org/cl/155075
-
Evan Shaw authored
R=rsc https://golang.org/cl/154169
-
Russ Cox authored
R=r https://golang.org/cl/156062
-
Trevor Strohman authored
Google is my employer so no AUTHORS change is needed. R=rsc https://golang.org/cl/154174
-
Russ Cox authored
R=ken2 https://golang.org/cl/156063
-
Russ Cox authored
* move memmove to arch-specific subdirectories * add memmove for arm * add copyright notices marking them as copied from Inferno R=ken2 https://golang.org/cl/156061
-
Rob Pike authored
threw in an embedded one for good measure. R=rsc CC=golang-dev https://golang.org/cl/157058
-
Ken Thompson authored
R=rsc https://golang.org/cl/156060
-
Russ Cox authored
R=r https://golang.org/cl/156059
-
Russ Cox authored
R=r https://golang.org/cl/156058
-
Ken Thompson authored
R=rsc https://golang.org/cl/156056
-
Ken Thompson authored
did not test 386, but should work shouldnt matter if copy is not used R=rsc https://golang.org/cl/156055
-
Adam Langley authored
R=rsc CC=golang-dev https://golang.org/cl/156051
-
Adam Langley authored
* add Marshal * add BitString.RightAlign * change to using a *time.Time (from time.Time) since that's what the time package uses. * return the unparsed data from Unmarshal. R=rsc CC=golang-dev https://golang.org/cl/156047
-
Russ Cox authored
R=r https://golang.org/cl/157053
-
Josh Goebel authored
R=r, rsc https://golang.org/cl/156046
-
Josh Goebel authored
R=r https://golang.org/cl/156045
-
Russ Cox authored
empty string for unnamed types. Fixes #249. R=r https://golang.org/cl/156052
-
- 17 Nov, 2009 13 commits
-
-
Russ Cox authored
Fixes #233. R=dsymonds1 https://golang.org/cl/154179
-
Russ Cox authored
the signal handling stack is a different size than the normal stack, so it cannot be allocated using the backup stack allocator. Fixes #250. R=agl1 CC=golang-dev https://golang.org/cl/157044
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/156044
-
Ken Thompson authored
R=rsc https://golang.org/cl/157046
-
Ken Thompson authored
data initialization to n*log(n) R=rsc https://golang.org/cl/158041
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/157042
-
Rob Pike authored
R=rsc https://golang.org/cl/157043
-
Aron Nopanen authored
Error information is carried from RPC server to client in the string 'Error' field of rpc.Response. An empty string is sent in the success case. This empty string was being returned to the caller (of Client.Call or Client.Go), resulting in a non-nil error response. This change detects an empty-string Response.Error at the client, and translates it into a nil value in Call.Error. Tests updated to check error return in success cases. R=r, rsc https://golang.org/cl/154159
-
Aron Nopanen authored
R=rsc, r https://golang.org/cl/154175
-
Russ Cox authored
R=r https://golang.org/cl/157041
-
Sergio Luis O. B. Correia authored
Currently, -I switch can't deal with a path containing spaces. This commit simplify setinclude(), by removing the special case of a string that had spaces. After this change, setinclude() will merely add the given directories to the include path, if it does not yet exist, and this approach works. Will be needed for solving issue 115. R=agl1, rsc, iant2, r https://golang.org/cl/155059
-
Sergio Luis O. B. Correia authored
R=rsc https://golang.org/cl/154180
-
Russ Cox authored
of limited utility but good for creating the metadata for an AUTHORS/CONTRIBUTORS change even if the patch doesn't apply cleanly. R=r https://golang.org/cl/154140
-