Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-06-19 | Imported Upstream version 1.3upstream/1.3 | Michael Stapelberg | 1 | -87/+33 | |
2013-12-03 | Imported Upstream version 1.2upstream/1.2 | Michael Stapelberg | 1 | -6/+81 | |
2013-05-14 | Imported Upstream version 1.1upstream/1.1 | Michael Stapelberg | 1 | -3/+25 | |
2013-03-04 | Imported Upstream version 1.1~hg20130304upstream/1.1_hg20130304 | Michael Stapelberg | 1 | -143/+73 | |
2012-04-06 | Imported Upstream version 1upstream/1 | Ondřej Surý | 1 | -357/+44 | |
2011-09-13 | Imported Upstream version 60upstream/60 | Ondřej Surý | 1 | -0/+728 | |
2011-09-13 | Imported Upstream version 60 | Ondřej Surý | 1 | -590/+0 | |
2011-04-20 | Imported Upstream version 2011.03.07.1upstream/2011.03.07.1 | Ondřej Surý | 1 | -8/+32 | |
2011-02-18 | Imported Upstream version 2011.02.15upstream/2011.02.15 | Ondřej Surý | 1 | -2/+10 | |
2011-02-14 | Imported Upstream version 2011-02-01.1upstream/2011-02-01.1 | Ondřej Surý | 1 | -1/+11 | |
2011-01-17 | Imported Upstream version 2011.01.12upstream/2011.01.12 | Ondřej Surý | 1 | -122/+164 | |
2010-06-28 | Only catch all signals if os/signal package imported. | Ian Lance Taylor | 1 | -1/+1 | |
Fixes issue 776. R=rsc CC=golang-dev http://codereview.appspot.com/1745041 | |||||
2010-05-19 | runtime: avoid allocation for fixed strings | Russ Cox | 1 | -4/+4 | |
R=r CC=golang-dev http://codereview.appspot.com/1083041 | |||||
2010-04-08 | runtime: fix build (panic) for FreeBSD | Russ Cox | 1 | -2/+0 | |
R=adg CC=golang-dev http://codereview.appspot.com/867046 | |||||
2010-04-05 | runtime: fix Caller | Russ Cox | 1 | -1/+1 | |
log: add test of Caller New regexp in log test is picky and will require some maintenance, but it catches off-by-one mistakes too. Fixes issue 710. R=gri CC=esko.luontola, golang-dev http://codereview.appspot.com/887043 | |||||
2010-04-05 | runtime: various arm fixes | Russ Cox | 1 | -2/+1 | |
* correct symbol table size * do not reorder functions in output * traceback * signal handling * use same code for go + defer * handle leaf functions in symbol table R=kaib, dpx CC=golang-dev http://codereview.appspot.com/884041 | |||||
2010-04-01 | runtime: turn run time errors checks into panics | Russ Cox | 1 | -26/+19 | |
R=ken2, r CC=golang-dev http://codereview.appspot.com/871042 Committer: Russ Cox <rsc@golang.org> | |||||
2010-03-31 | gc: implement panic and recover | Russ Cox | 1 | -9/+0 | |
R=ken2, r, ken3 CC=golang-dev http://codereview.appspot.com/831042 | |||||
2010-03-30 | gc: add panic and recover (still unimplemented in runtime) | Russ Cox | 1 | -5/+14 | |
main semantic change is to enforce single argument to panic. runtime: change to 1-argument panic. use String method on argument if it has one. R=ken2, r CC=golang-dev http://codereview.appspot.com/812043 | |||||
2010-03-24 | runtime: malloc sampling, pprof interface | Russ Cox | 1 | -2/+9 | |
R=r CC=golang-dev http://codereview.appspot.com/719041 | |||||
2010-03-23 | runtime: add Callers | Russ Cox | 1 | -0/+26 | |
cut copies of traceback from 6 to 1. R=r CC=golang-dev http://codereview.appspot.com/703041 | |||||
2010-03-16 | runtime: add GOROOT and Version | Russ Cox | 1 | -0/+9 | |
R=r CC=golang-dev http://codereview.appspot.com/608041 | |||||
2010-02-08 | runtime: instrument malloc + garbage collector. | Russ Cox | 1 | -0/+11 | |
add simple garbage collection benchmark. R=iant CC=golang-dev http://codereview.appspot.com/204053 | |||||
2010-01-25 | in C and asm, replace pkg·name with ·name | Russ Cox | 1 | -11/+11 | |
(eliminate assumption of package global name space, make code easier to move between packages). R=r CC=golang-dev http://codereview.appspot.com/194072 | |||||
2010-01-06 | Ported runtime to Windows. | Hector Chu | 1 | -0/+14 | |
R=rsc CC=golang-dev http://codereview.appspot.com/176066 Committer: Russ Cox <rsc@golang.org> | |||||
2009-11-20 | x[lo:] - gc and runtime. | Russ Cox | 1 | -22/+0 | |
* add runtime sliceslice1 for x[lo:] * remove runtime arraytoslice, rewriting &arr into arr[0:len(arr)]. * port cgen_inline into 8g, 5g. * use native memmove in maps R=ken2 http://codereview.appspot.com/157106 | |||||
2009-10-15 | rename sys functions to runtime, | Russ Cox | 1 | -11/+11 | |
because they are in package runtime. another step to enforcing package boundaries. R=r DELTA=732 (114 added, 93 deleted, 525 changed) OCL=35811 CL=35824 | |||||
2009-10-13 | write stack traces and panics to stderr | Rob Pike | 1 | -0/+3 | |
R=rsc DELTA=31 (5 added, 3 deleted, 23 changed) OCL=35700 CL=35700 | |||||
2009-08-28 | sliceslice inline | Ken Thompson | 1 | -0/+6 | |
R=rsc OCL=34041 CL=34041 | |||||
2009-08-25 | rename runtime internals to have modern names (array->slice etc) | Rob Pike | 1 | -5/+5 | |
R=rsc DELTA=444 (179 added, 177 deleted, 88 changed) OCL=33847 CL=33849 | |||||
2009-06-09 | mv src/lib to src/pkg | Rob Pike | 1 | -0/+462 | |
tests: all.bash passes, gobuild still works, godoc still works. R=rsc OCL=30096 CL=30102 |