aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/malloc.h
AgeCommit message (Expand)Author
2012-05-11runtime: revert MaxGcproc from 16 to 4Dmitriy Vyukov
2012-05-02runtime: avoid unnecessary zeroization of huge memory blocksDmitriy Vyukov
2012-04-12runtime: speedup GC sweep phase (batch free)Dmitriy Vyukov
2012-04-09runtime: preparation for parallel GCDmitriy Vyukov
2012-02-22runtime: goroutine profile, stack dumpsRuss Cox
2012-02-16runtime: release unused memory to the OS.Sébastien Paolacci
2012-02-06runtime: delete UpdateMemStats, replace with ReadMemStats(&stats).Rémy Oudompheng
2012-01-10runtime: make garbage collector faster by deleting codeRuss Cox
2011-10-06runtime: faster finalizersDmitriy Vyukov
2011-10-06runtime: fix spurious deadlock reportingDmitriy Vyukov
2011-09-30runtime: parallelize garbage collector mark + sweepRuss Cox
2011-07-18runtime: add per-M caches for MemStatsDmitriy Vyukov
2011-07-18runtime: add per-M caches for MemStatsDmitriy Vyukov
2011-07-12runtime: eliminate contention during stack allocationDmitriy Vyukov
2011-02-02runtime: faster allocator, garbage collectorRuss Cox
2011-01-28runtime: simpler heap map, memory allocationRuss Cox
2011-01-19runtime: add per-pause gc statsRuss Cox
2010-12-15remove naclRuss Cox
2010-11-04runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almostRuss Cox
2010-09-28runtime: add mmap of null page just in caseRuss Cox
2010-09-07runtime: use manual stack for garbage collectionRuss Cox
2010-04-22runtime: closures, defer bug fix for Native ClientRuss Cox
2010-04-09runtime: delete malx, skip_depth argument to mallocRuss Cox
2010-03-29runtime: a couple more memory stats.Russ Cox
2010-03-29runtime: more malloc statisticsRuss Cox
2010-03-26runtime: run all finalizers in a single goroutine.Russ Cox
2010-03-23runtime: add memory profiling, disabled.Russ Cox
2010-03-08runtime: clock garbage collection on bytes allocated, not pages in useRuss Cox
2010-02-10runtime: delete MHeapMapCache, which is uselessRuss Cox
2010-02-10runtime: tighten garbage collectorRuss Cox
2010-02-10runtime: garbage collection + malloc performanceRuss Cox
2010-02-08runtime: allow arbitrary return type in SetFinalizer.Russ Cox
2010-02-08runtime: instrument malloc + garbage collector.Russ Cox
2010-02-03finalizers; merge package malloc into package runtimeRuss Cox
2010-01-13runtime cleanup.Russ Cox
2009-12-07runtime: don't touch pages of memory unnecessarily.Russ Cox
2009-12-03runtime: malloc fixesRuss Cox
2009-06-09mv src/lib to src/pkgRob Pike