Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-02-29 | Imported Upstream version 2012.02.22 | Ondřej Surý | 84 | -2128/+2183 | |
2012-01-30 | Imported Upstream version 2012.01.27 | Ondřej Surý | 204 | -4358/+8555 | |
2011-10-06 | Imported Upstream version 2011.09.21upstream-weekly/2011.09.21 | Ondřej Surý | 16 | -99/+375 | |
2011-09-13 | Imported Upstream version 2011.09.07upstream-weekly/2011.09.07 | Ondřej Surý | 43 | -399/+1727 | |
2011-08-24 | Imported Upstream version 2011.08.17 | Ondřej Surý | 10 | -170/+206 | |
2011-08-10 | Imported Upstream version 2011.08.10upstream-weekly/2011.08.10 | Ondřej Surý | 20 | -43/+1176 | |
2011-08-03 | Imported Upstream version 2011.07.29upstream-weekly/2011.07.29 | Ondřej Surý | 55 | -700/+2141 | |
2011-07-08 | Imported Upstream version 2011.07.07upstream-weekly/2011.07.07 | Ondřej Surý | 25 | -131/+522 | |
2011-06-28 | Imported Upstream version 2011.06.23upstream-weekly/2011.06.23 | Ondřej Surý | 15 | -104/+141 | |
2011-06-10 | Imported Upstream version 2011.06.09upstream-weekly/2011.06.09 | Ondřej Surý | 9 | -10/+86 | |
2011-06-03 | Imported Upstream version 2011.06.02upstream-weekly/2011.06.02 | Ondřej Surý | 10 | -19/+123 | |
2011-05-23 | Imported Upstream version 2011.05.22upstream-weekly/2011.05.22 | Ondřej Surý | 12 | -74/+192 | |
2011-05-04 | Imported Upstream version 2011.04.27upstream-weekly/2011.04.27 | Ondřej Surý | 1 | -13/+2 | |
2011-05-04 | Imported Upstream version 57upstream/57 | Ondřej Surý | 1 | -2/+13 | |
2011-04-28 | Imported Upstream version 2011.04.27upstream/2011.04.27 | Ondřej Surý | 45 | -173/+597 | |
2011-04-26 | Imported Upstream version 2011.04.13upstream/2011.04.13 | Ondřej Surý | 54 | -773/+2199 | |
2011-04-20 | Imported Upstream version 2011.03.07.1upstream/2011.03.07.1 | Ondřej Surý | 41 | -365/+668 | |
2011-02-18 | Imported Upstream version 2011.02.15upstream/2011.02.15 | Ondřej Surý | 38 | -452/+1209 | |
2011-02-14 | Imported Upstream version 2011-02-01.1upstream/2011-02-01.1 | Ondřej Surý | 87 | -2044/+1366 | |
2011-01-17 | Imported Upstream version 2011.01.12upstream/2011.01.12 | Ondřej Surý | 175 | -4752/+7980 | |
2010-06-29 | runtime: fix scheduling bug - world wasn't stopping | Russ Cox | 1 | -1/+1 | |
Fixes issue 886. R=r CC=golang-dev http://codereview.appspot.com/1667051 | |||||
2010-06-29 | runtime: fix windows build | Alex Brainman | 1 | -0/+2 | |
R=golang-dev, iant CC=golang-dev http://codereview.appspot.com/1747041 Committer: Ian Lance Taylor <iant@golang.org> | |||||
2010-06-28 | Only catch all signals if os/signal package imported. | Ian Lance Taylor | 13 | -12/+27 | |
Fixes issue 776. R=rsc CC=golang-dev http://codereview.appspot.com/1745041 | |||||
2010-06-21 | runtime: split extern.go into debug.go, extern.go, sig.go. | Russ Cox | 6 | -152/+164 | |
move mal next to the other malloc functions. R=r CC=golang-dev http://codereview.appspot.com/1701045 | |||||
2010-06-21 | runtime: delete old types | Russ Cox | 1 | -36/+0 | |
R=r CC=golang-dev http://codereview.appspot.com/1715043 | |||||
2010-06-20 | reflect: add Kind, remove Int8Type, Int8Value, etc. | Russ Cox | 1 | -0/+3 | |
update other code to match. R=r CC=golang-dev http://codereview.appspot.com/1680044 | |||||
2010-06-18 | complex divide: match C99 implementation | Russ Cox | 1 | -23/+47 | |
R=iant, ken2, r, r2, ken3 CC=golang-dev http://codereview.appspot.com/1686044 | |||||
2010-06-14 | runtime: correct fault for 16-bit divide on Leopard | Russ Cox | 2 | -2/+6 | |
R=r CC=golang-dev http://codereview.appspot.com/1703041 | |||||
2010-06-12 | runtime: fix 386 signal handler bug | Russ Cox | 2 | -15/+35 | |
Cannot assume that g == m->curg at time of signal. Must save actual g and restore. Fixes flaky crashes with messages like throw: malloc mlookup throw: malloc/free - deadlock throw: unwindstack on self throw: free mlookup (and probably others) when running cgo. R=iant CC=golang-dev http://codereview.appspot.com/1648043 | |||||
2010-06-11 | runtime: switch to OS stack during Windows syscall | Alex Brainman | 5 | -56/+163 | |
R=rsc CC=golang-dev http://codereview.appspot.com/1381041 Committer: Russ Cox <rsc@golang.org> | |||||
2010-06-11 | runtime: free lock handles on Windows | Alex Brainman | 1 | -0/+2 | |
R=rsc CC=golang-dev http://codereview.appspot.com/1652041 Committer: Russ Cox <rsc@golang.org> | |||||
2010-06-08 | gc: new typechecking rules | Russ Cox | 1 | -78/+130 | |
* Code for assignment, conversions now mirrors spec. * Changed some snprint -> smprint. * Renamed runtime functions to separate interface conversions from type assertions: convT2I, assertI2T, etc. * Correct checking of \U sequences. Fixes issue 840. Fixes issue 830. Fixes issue 778. R=ken2 CC=golang-dev http://codereview.appspot.com/1303042 | |||||
2010-06-07 | runtime: finish pchw -> tiny, added gettime for tiny | Daniel Theophanes | 4 | -4/+16 | |
R=rsc CC=golang-dev http://codereview.appspot.com/1514041 Committer: Russ Cox <rsc@golang.org> | |||||
2010-06-01 | runtime: Fix printing -Inf | Evan Shaw | 1 | -2/+2 | |
R=rsc CC=golang-dev http://codereview.appspot.com/1258044 Committer: Russ Cox <rsc@golang.org> | |||||
2010-05-28 | syscall: windows SysAlloc should use stdcall_raw not syscall | Alex Brainman | 1 | -1/+1 | |
R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/1382041 Committer: Russ Cox <rsc@golang.org> | |||||
2010-05-24 | runtime: free old hashmap pieces during resizing | Russ Cox | 1 | -1/+0 | |
R=r CC=golang-dev http://codereview.appspot.com/1254044 | |||||
2010-05-21 | runtime: correct tracebacks for nascent goroutines, even closures | Russ Cox | 2 | -2/+92 | |
Fixes issue 780. R=r CC=golang-dev http://codereview.appspot.com/1221042 | |||||
2010-05-19 | runtime: avoid allocation for fixed strings | Russ Cox | 12 | -14/+25 | |
R=r CC=golang-dev http://codereview.appspot.com/1083041 | |||||
2010-05-19 | runtime: allow large map values | Russ Cox | 1 | -12/+59 | |
Fixes issue 772. R=ken2 CC=golang-dev http://codereview.appspot.com/1206043 | |||||
2010-05-06 | Save the scheduling state even predawn. | Ian Lance Taylor | 1 | -4/+4 | |
This permits cgo callbacks to work when run in init code. Otherwise cgocallback switches to the wrong stack address. R=rsc CC=golang-dev http://codereview.appspot.com/1123043 | |||||
2010-05-06 | runtime.GOMAXPROCS: hack it to have it return the old value. | Rob Pike | 4 | -7/+16 | |
R=rsc CC=golang-dev http://codereview.appspot.com/1140041 | |||||
2010-05-03 | runtime, strconv: tiny cleanups | Russ Cox | 1 | -3/+1 | |
R=r CC=golang-dev http://codereview.appspot.com/1081042 | |||||
2010-05-03 | runtime/arm: fix build | Russ Cox | 1 | -7/+7 | |
Import _mulv from Inferno again, change R9 to R2. Not sure what the other differences were for, but they weren't working. TBR=kaib CC=golang-dev http://codereview.appspot.com/1079041 | |||||
2010-05-03 | runtime: update godefs usage comment for GOARCH=386 GOOS={darwin,freebsd} | Giles Lean | 4 | -4/+4 | |
When trying to regenerate src/pkg/runtime/darwin/386/defs.h on a 64 bit capable Snow Leopard (OS X 10.6.3) system I needed to add -f -m32 to godefs, as this OS and hardware combination defaults to 64 bit compilation. For safety, make the same change to the 32 bit FreeBSD instructions in .../freebsd/defs.c. (Tested OK and no problems introduced.) R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/1052042 Committer: Russ Cox <rsc@golang.org> | |||||
2010-05-01 | gc: be pickier about slice, chan, array, and map sizes | Russ Cox | 4 | -16/+25 | |
Fixes issue 589. R=ken2 CC=golang-dev http://codereview.appspot.com/1032044 | |||||
2010-04-29 | rename GOOS=mingw to GOOS=windows | Alex Brainman | 13 | -11/+11 | |
R=rsc, Joe Poirier CC=golang-dev http://codereview.appspot.com/1015043 Committer: Russ Cox <rsc@golang.org> | |||||
2010-04-28 | darwin: bsdthread_create can fail; print good error | Russ Cox | 4 | -6/+11 | |
Fixes issue 549. R=adg CC=golang-dev http://codereview.appspot.com/1019042 | |||||
2010-04-27 | 5l, 6l, 8l, runtime: make -s binaries work | Russ Cox | 1 | -17/+8 | |
5l, 6l, 8l: change ELF header so that strip doesn't destroy binary Fixes issue 261. R=iant, r CC=golang-dev http://codereview.appspot.com/994044 | |||||
2010-04-22 | runtime: closures, defer bug fix for Native Client | Russ Cox | 6 | -14/+299 | |
Enable package tests for Native Client build. R=r CC=golang-dev http://codereview.appspot.com/957042 | |||||
2010-04-21 | runtime: switch state back to Grunning after recovery | Russ Cox | 2 | -2/+3 | |
Fixes issue 733. R=r CC=golang-dev http://codereview.appspot.com/958041 |