aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/malloc.go
AgeCommit message (Expand)Author
2014-09-08build: move package sources from src/pkg to srcRuss Cox
2014-09-06runtime: fix panic/wrapper/recover mathRuss Cox
2014-09-05runtime: use reflect.call during panic instead of newstackcallRuss Cox
2014-09-04runtime: correct various Go -> C function callsRuss Cox
2014-09-03runtime: make onM and mcall take Go func valuesRuss Cox
2014-09-02runtime: unify fastrand1 and fastrand2Keith Randall
2014-09-01runtime: convert mprof.goc to mprof.goRuss Cox
2014-08-29runtime: include constants and defs_*_*.h types in generated Go defsRuss Cox
2014-08-29runtime: clean up GC codeDmitriy Vyukov
2014-08-28runtime: move finalizer thread to Go.Keith Randall
2014-08-27runtime: rename Lock to MutexRuss Cox
2014-08-27cmd/cc, runtime: preserve C runtime type names in generated GoRuss Cox
2014-08-24runtime: cache unrolled GC bitmaskDmitriy Vyukov
2014-08-21runtime: fix deadlock when gctraceDmitriy Vyukov
2014-08-19runtime: make the GC bitmap a byte arrayDmitriy Vyukov
2014-08-19runtime: always pass type to mallocgc when allocating scannable memoryDmitriy Vyukov
2014-08-19runtime: fix MemStats on 32-bitsDmitriy Vyukov
2014-08-18cmd/gc, runtime: refactor interface inlining decision into compilerRuss Cox
2014-08-18runtime: don't acquirem on malloc fast pathDmitriy Vyukov
2014-08-13runtime: keep objects in free lists marked as allocated.Dmitriy Vyukov
2014-08-13runtime: remove FlagNoProfileDmitriy Vyukov
2014-08-07runtime: convert markallocated from C to GoDmitriy Vyukov
2014-08-07runtime: remove mal/malloc/FlagNoGC/FlagNoInvokeGCDmitriy Vyukov
2014-08-06runtime: clean up naming of mcallable functions.Keith Randall
2014-08-05runtime: remove outdated commentDmitriy Vyukov
2014-07-31runtime: convert slice operations to Go.Keith Randall
2014-07-30runtime: rewrite malloc in Go.Keith Randall