Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-06-19 | Imported Upstream version 1.3upstream/1.3 | Michael Stapelberg | 1 | -6/+22 | |
2013-12-03 | Imported Upstream version 1.2upstream/1.2 | Michael Stapelberg | 1 | -23/+27 | |
2013-05-14 | Imported Upstream version 1.1upstream/1.1 | Michael Stapelberg | 1 | -4/+48 | |
2013-03-04 | Imported Upstream version 1.1~hg20130304upstream/1.1_hg20130304 | Michael Stapelberg | 1 | -3/+3 | |
2012-06-14 | Imported Upstream version 1.0.2upstream/1.0.2 | Ondřej Surý | 1 | -2/+3 | |
2012-05-02 | Imported Upstream version 1.0.1upstream/1.0.1 | Ondřej Surý | 1 | -1/+2 | |
2012-04-06 | Imported Upstream version 1upstream/1 | Ondřej Surý | 1 | -64/+11 | |
2011-09-13 | Imported Upstream version 60upstream/60 | Ondřej Surý | 1 | -0/+192 | |
2011-09-13 | Imported Upstream version 60 | Ondřej Surý | 1 | -192/+0 | |
2011-04-28 | Imported Upstream version 2011.04.27upstream/2011.04.27 | Ondřej Surý | 1 | -1/+1 | |
2011-02-18 | Imported Upstream version 2011.02.15upstream/2011.02.15 | Ondřej Surý | 1 | -11/+27 | |
2011-02-14 | Imported Upstream version 2011-02-01.1upstream/2011-02-01.1 | Ondřej Surý | 1 | -0/+13 | |
2011-01-17 | Imported Upstream version 2011.01.12upstream/2011.01.12 | Ondřej Surý | 1 | -32/+27 | |
2010-06-21 | runtime: split extern.go into debug.go, extern.go, sig.go. | Russ Cox | 1 | -148/+0 | |
move mal next to the other malloc functions. R=r CC=golang-dev http://codereview.appspot.com/1701045 | |||||
2010-05-06 | runtime.GOMAXPROCS: hack it to have it return the old value. | Rob Pike | 1 | -2/+4 | |
R=rsc CC=golang-dev http://codereview.appspot.com/1140041 | |||||
2010-03-29 | runtime: run deferred calls at Goexit | Russ Cox | 1 | -0/+1 | |
baby step toward panic+recover. Fixes issue 349. R=r CC=golang-dev http://codereview.appspot.com/825043 | |||||
2010-03-29 | runtime: a couple more memory stats. | Russ Cox | 1 | -0/+2 | |
now runtime.MemStats.Sys really is the sum of all the other Sys fields. R=r CC=golang-dev http://codereview.appspot.com/843041 | |||||
2010-03-29 | runtime: more malloc statistics | Russ Cox | 1 | -14/+34 | |
expvar: default publishings for cmdline, memstats godoc: import expvar R=r CC=golang-dev http://codereview.appspot.com/815041 | |||||
2010-03-26 | runtime: run all finalizers in a single goroutine. | Russ Cox | 1 | -1/+5 | |
eliminate second pass of mark+sweep by scanning finalizer table specially. R=r CC=golang-dev http://codereview.appspot.com/782041 | |||||
2010-03-24 | runtime: malloc sampling, pprof interface | Russ Cox | 1 | -13/+108 | |
R=r CC=golang-dev http://codereview.appspot.com/719041 | |||||
2010-03-23 | runtime: add memory profiling, disabled. | Russ Cox | 1 | -2/+24 | |
no way to get the data out yet. add prototype for runtime.Callers, missing from last CL. R=r CC=golang-dev http://codereview.appspot.com/713041 | |||||
2010-03-23 | runtime: add Callers | Russ Cox | 1 | -2/+0 | |
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/+20 | |
R=r CC=golang-dev http://codereview.appspot.com/608041 | |||||
2010-03-08 | runtime: clock garbage collection on bytes allocated, not pages in use | Russ Cox | 1 | -0/+1 | |
This keeps fragmentation from delaying garbage collections (and causing more fragmentation). Cuts fresh godoc (with indexes) from 261M to 166M (120M live). Cuts toy wc program from 50M to 8M. Fixes issue 647. R=r, cw CC=golang-dev http://codereview.appspot.com/257041 | |||||
2010-02-16 | runtime: fix bug in Caller documentation | Russ Cox | 1 | -1/+1 | |
R=r CC=golang-dev http://codereview.appspot.com/207110 | |||||
2010-02-08 | runtime: instrument malloc + garbage collector. | Russ Cox | 1 | -0/+9 | |
add simple garbage collection benchmark. R=iant CC=golang-dev http://codereview.appspot.com/204053 | |||||
2010-02-07 | runtime: introduce MemStatsType | Russ Cox | 1 | -3/+5 | |
R=ken2 CC=golang-dev http://codereview.appspot.com/204061 | |||||
2010-02-03 | finalizers; merge package malloc into package runtime | Russ Cox | 1 | -0/+68 | |
R=r, cw CC=golang-dev http://codereview.appspot.com/198085 | |||||
2009-12-16 | runtime: if os/signal is not in use, crash on | Russ Cox | 1 | -0/+4 | |
most signals, so that ordinary programs can be killed, for example. Fixes issue 434. R=dsymonds1 CC=golang-dev, hoisie http://codereview.appspot.com/180064 | |||||
2009-12-15 | os/signal: new package | David Symonds | 1 | -0/+7 | |
Fixes issue 71. R=rsc, r http://codereview.appspot.com/162056 Committer: Russ Cox <rsc@golang.org> | |||||
2009-11-17 | improve documentation of runtime. there was no mention of types. | Rob Pike | 1 | -1/+3 | |
R=rsc CC=golang-dev http://codereview.appspot.com/157042 | |||||
2009-11-05 | gofmt-ify io, json, runtime, encoding | Robert Griesemer | 1 | -1/+1 | |
R=rsc http://go/go-review/1017056 | |||||
2009-10-15 | publish semacquire and semrelease for use by sync. | Russ Cox | 1 | -0/+11 | |
more enforcing package boundaries R=r DELTA=46 (13 added, 15 deleted, 18 changed) OCL=35806 CL=35806 | |||||
2009-10-07 | apply gofmt to rand reflect regexp rpc runtime sort strconv strings sync ↵ | Russ Cox | 1 | -4/+4 | |
syscall testing time unicode unsafe utf8 R=gri DELTA=1409 (79 added, 24 deleted, 1306 changed) OCL=35415 CL=35437 | |||||
2009-08-25 | checkpoint & test (pidigits) before trying to automate. | Russ Cox | 1 | -0/+3 | |
R=r DELTA=616 (598 added, 11 deleted, 7 changed) OCL=33846 CL=33848 | |||||
2009-08-06 | add runtime.GOMAXPROCS, allowing a program to, in effect, set $GOMAXPROCS | Rob Pike | 1 | -0/+3 | |
R=rsc DELTA=29 (28 added, 1 deleted, 0 changed) OCL=32829 CL=32837 | |||||
2009-07-13 | add LockOSThread and UnlockOSThread to | Russ Cox | 1 | -0/+14 | |
runtime package for use by debugger, which needs to make sure that all ptrace calls about a given pid come from the same thread. R=r DELTA=175 (90 added, 63 deleted, 22 changed) OCL=31546 CL=31558 | |||||
2009-06-09 | mv src/lib to src/pkg | Rob Pike | 1 | -0/+28 | |
tests: all.bash passes, gobuild still works, godoc still works. R=rsc OCL=30096 CL=30102 |