aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/runtime2.go
AgeCommit message (Expand)Author
2015-10-22runtime: prune some dead variablesMatthew Dempsky
2015-10-22runtime: split plan9 and solaris's m fields into new embedded mOS typeMatthew Dempsky
2015-10-21runtime: make iface/eface handling more type safeMatthew Dempsky
2015-10-20runtime: add stringStructOf helper functionMatthew Dempsky
2015-10-20runtime: rename _func.frame to make it clear it's deprecated and unused.Aaron Jacobs
2015-10-09runtime: directly track GC assist balanceAustin Clements
2015-09-14runtime: remove unused g.readyg fieldAustin Clements
2015-08-28runtime: check explicitly for short unwinding of stacksRuss Cox
2015-08-25runtime: fix nmspinning comparisonTodd Neal
2015-08-07runtime: run on GOARM=5 and GOARM=6 uniprocessor freebsd/arm systemsRuss Cox
2015-07-30runtime: change arm software div/mod call sequence not to modify stackRuss Cox
2015-07-29runtime/trace: record event sequence numbers explicitlyRuss Cox
2015-07-29runtime: avoid race between SIGPROF traceback and stack barriersAustin Clements
2015-07-11all: link to https instead of httpBrad Fitzpatrick
2015-06-29runtime: store syscall parameters in m not on stackAlex Brainman
2015-06-18runtime: fix tracing of syscallexitDmitry Vyukov
2015-06-17runtime: fix races in stack scanRuss Cox
2015-06-11all: fix misprints in commentsAinar Garipov
2015-06-10runtime: correct a drifted comment in referencing m->locked.Yongjian Xu
2015-06-02runtime: steal space for stack barrier tracking from stackAustin Clements
2015-06-02runtime: decouple stack bounds and stack allocation sizeAustin Clements
2015-05-22runtime: don't always unblock all signalsElias Naur
2015-05-18runtime: use separate count and note for forEachPAustin Clements
2015-05-17runtime: eliminate runqvictims and a copy from runqstealAustin Clements
2015-05-13runtime: reduce thrashing of gs between psRick Hudson
2015-05-11runtime: enable profiling on g0Daniel Morsing
2015-05-07runtime: fix comments that mention g status valuesAlex Brainman
2015-04-28runtime: replace needwb() with writeBarrierEnabledRuss Cox
2015-04-27runtime: replace STW for enabling write barriers with ragged barrierAustin Clements
2015-04-27runtime: add ragged global barrier functionAustin Clements
2015-04-24runtime: replace per-M workbuf cache with per-P gcWork cacheAustin Clements
2015-04-24runtime: yield time slice to most recently readied GAustin Clements
2015-04-21runtime: fix background marking at 25% utilizationAustin Clements
2015-04-21runtime: multi-threaded, utilization-scheduled background markAustin Clements
2015-04-21runtime: track time spent in mutator assistsAustin Clements
2015-04-21runtime: proportional mutator assistAustin Clements
2015-04-20runtime: replace func-based write barrier skipping with type-basedRuss Cox
2015-04-17runtime: fix dangling pointer in readyExecuteAustin Clements
2015-04-17runtime: delete cgo_allocateRuss Cox
2015-04-15runtime: merge slice and sliceStructMichael Hudson-Doyle
2015-04-09runtime: add isarchive, set by the linkerDavid Crawshaw
2015-04-03runtime: initialize shared library at library-load timeSrdjan Petrovic
2015-04-02runtime: add cumulative GC CPU % to gctrace lineAustin Clements
2015-03-26runtime, runtime/cgo: make needextram a boolDavid Crawshaw
2015-03-20runtime: add GODEBUG=sbrk=1 to bypass memory allocator (and GC)Russ Cox
2015-03-17runtime: fix writebarrier throw in lock_semaRuss Cox
2015-03-17runtime: Remove write barriers during STW.Rick Hudson
2015-03-11runtime,reflect,cmd/internal/gc: Fix comments referring to .c/.h filesKeith Randall
2015-03-10runtime: remove runtime frames from stacks in tracesDmitry Vyukov
2015-03-04runtime: bound defer pools (try 2)Dmitry Vyukov