summaryrefslogtreecommitdiff
path: root/src/pkg/runtime/mcache.c
AgeCommit message (Collapse)AuthorFilesLines
2011-04-28Imported Upstream version 2011.04.27Ondřej Surý1-0/+2
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-14/+11
2010-03-08runtime: clock garbage collection on bytes allocated, not pages in useRuss Cox1-0/+19
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-10runtime: garbage collection + malloc performanceRuss Cox1-1/+11
* add bit tracking finalizer status, avoiding getfinalizer lookup * add ability to allocate uncleared memory R=iant CC=golang-dev http://codereview.appspot.com/207044
2009-06-09mv src/lib to src/pkgRob Pike1-0/+105
tests: all.bash passes, gobuild still works, godoc still works. R=rsc OCL=30096 CL=30102