aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/malloc.h
AgeCommit message (Expand)Author
2014-09-08build: move package sources from src/pkg to srcRuss Cox
2014-09-04runtime: correct various Go -> C function callsRuss Cox
2014-09-03runtime: deferproc/deferreturn in GoKeith Randall
2014-09-01runtime: convert mprof.goc to mprof.goRuss Cox
2014-08-30runtime: rename SysAlloc to sysAlloc for GoRuss 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-25cmd/gc, runtime: treat slices and strings like pointers in garbage collectionRuss Cox
2014-08-25runtime: remove dedicated scavenger threadDmitriy Vyukov
2014-08-24runtime,runtime/debug: Converted some functions from goc to Go.Sanjay Menakuru
2014-08-24runtime: fix races on mheap.allspansDmitriy Vyukov
2014-08-21runtime: convert common scheduler functions to GoDmitriy Vyukov
2014-08-19runtime: fix memstatsDmitriy Vyukov
2014-08-18runtime: implement transfer cacheDmitriy Vyukov
2014-08-13runtime: remove FlagNoProfileDmitriy Vyukov
2014-08-08runtime: bump MaxGcprocs to 32Dmitriy Vyukov
2014-08-07cmd/cc, runtime: eliminate use of the unnamed substructure C extensionPeter Collingbourne
2014-08-07runtime: convert markallocated from C to GoDmitriy Vyukov
2014-08-07runtime: remove mal/malloc/FlagNoGC/FlagNoInvokeGCDmitriy Vyukov
2014-08-06runtime: simplify codeDmitriy Vyukov
2014-08-06runtime: cache one GC workbuf in thread-local storageDmitriy Vyukov
2014-07-31runtime: get rid of freeDmitriy Vyukov
2014-07-30runtime: rewrite malloc in Go.Keith Randall
2014-07-29runtime: simpler and faster GCDmitriy Vyukov
2014-07-17undo CL 101570044 / 2c57aaea79c4Keith Randall
2014-07-16runtime: convert map implementation to Go.Keith Randall
2014-06-30undo CL 104200047 / 318b04f28372Keith Randall
2014-06-30runtime: stack allocator, separate from mallocgcKeith Randall
2014-05-08runtime: write memory profile statistics to the heap dump.Keith Randall
2014-04-28runtime: clean up scanning of GsKeith Randall
2014-04-03cmd/gc, runtime: make GODEBUG=gcdead=1 mode work with livenessRuss Cox
2014-04-02runtime: revert change to PoisonPtr valueRuss Cox
2014-04-02cmd/gc, cmd/ld, runtime: compact liveness bitmapsRuss Cox
2014-04-01runtime: adjust GODEBUG=allocfreetrace=1 and GODEBUG=gcdead=1Russ Cox
2014-03-26runtime: fix yet another race in bgsweepDmitriy Vyukov
2014-03-25runtime: WriteHeapDump dumps the heap to a file.Keith Randall
2014-03-25runtime: redo stack map entries to avoid false retentionKeith Randall
2014-03-25runtime: accurately record whether heap memory is reservedIan Lance Taylor
2014-03-06runtime: shrink bigger stacks without any copying.Keith Randall
2014-03-06runtime: fix malloc page alignment + efenceRuss Cox
2014-02-26runtime: grow stack by copyingKeith Randall
2014-02-26runtime: get rid of the settype buffer and lock.Keith Randall
2014-02-20runtime: use goc2c as much as possibleRuss Cox
2014-02-13runtime: update malloc comment for MSpan.needzeroRuss Cox
2014-02-13runtime: introduce MSpan.needzero instead of writing to span dataRuss Cox
2014-02-12runtime: concurrent GC sweepDmitriy Vyukov
2014-01-30runtime: increase page size to 8KDmitriy Vyukov
2014-01-28runtime: fix windows buildDmitriy Vyukov