summaryrefslogtreecommitdiff
path: root/src/runtime/trace.go
Commit message (Expand)AuthorAgeFilesLines
* runtime, cmd/trace: track goroutines blocked on GC assistsAustin Clements2016-10-281-1/+2
* runtime, cmd/trace: annotate different mark worker typesAustin Clements2016-10-281-5/+25
* runtime: Profile goroutines holding contended mutexes.Peter Weinberger2016-10-281-1/+1
* runtime: replace *g with guintptr in traceAustin Clements2016-10-211-8/+8
* runtime: mark several types go:notinheapAustin Clements2016-10-151-0/+7
* cmd/trace: label mark termination spans as suchAustin Clements2016-10-071-2/+2
* runtime: make next_gc ^0 when GC is disabledAustin Clements2016-10-071-1/+6
* runtime: fix global buffer reset in StopTraceDmitry Vyukov2016-09-021-2/+4
* runtime: speed up StartTrace with lots of blocked goroutinesDmitry Vyukov2016-08-221-23/+38
* runtime: use per-goroutine sequence numbers in tracerDmitry Vyukov2016-04-231-54/+67
* runtime: fix description of trace eventsDmitry Vyukov2016-04-221-3/+3
* internal/trace: support parsing of 1.5 tracesDmitry Vyukov2016-04-111-1/+1
* runtime: emit file:line info into tracesDmitry Vyukov2016-04-081-12/+86
* runtime: acquire stack lock in traceEventAustin Clements2016-01-271-1/+6
* runtime: eliminate traceAllocBlock write barriersAustin Clements2015-11-191-10/+19
* runtime: break out system-specific constants into package sysMichael Matloob2015-11-121-4/+5
* runtime: replace traceBuf slice with indexAustin Clements2015-11-111-32/+42
* runtime: eliminate traceStack write barriersAustin Clements2015-11-111-4/+9
* runtime: eliminate traceBuf write barriersAustin Clements2015-11-111-68/+82
* runtime: break atomics out into package runtime/internal/atomicMichael Matloob2015-11-101-5/+8
* runtime: decentralize sweep termination and mark transitionAustin Clements2015-11-051-1/+1
* runtime: beginning of decentralized off->mark transitionAustin Clements2015-11-051-1/+1
* runtime/trace: fix tracing of blocking system callsShawn Walker-Salas2015-09-171-1/+1
* runtime: fix hashing of trace stacksAustin Clements2015-09-141-1/+1
* runtime/trace: record event sequence numbers explicitlyRuss Cox2015-07-291-7/+38
* runtime: fix comments referring to trace functions in runtime/pprofAustin Clements2015-07-221-2/+2
* all: link to https instead of httpBrad Fitzpatrick2015-07-111-1/+1
* runtime: fix tracing of syscallexitDmitry Vyukov2015-06-181-2/+18
* runtime: factor stoptheworld/starttheworld patternAustin Clements2015-05-181-24/+10
* runtime: adjust traceTickDiv for non-x86 architecturesShenghou Ma2015-05-011-2/+7
* runtime: replace func-based write barrier skipping with type-basedRuss Cox2015-04-201-3/+3
* runtime: fix tracing of syscall exitDmitry Vyukov2015-04-101-3/+3
* runtime: introduce heap_live; replace use of heap_alloc in GCAustin Clements2015-04-061-2/+2
* runtime: remove futile wakeups from traceDmitry Vyukov2015-03-171-2/+13
* cmd/trace: dump thread id on proc startDmitry Vyukov2015-03-111-2/+2
* runtime: remove runtime frames from stacks in tracesDmitry Vyukov2015-03-101-40/+44
* runtime: simplify CPU profiling codeMatthew Dempsky2015-02-261-2/+2
* cmd/trace: add new commandDmitry Vyukov2015-02-201-1/+0
* runtime: fix false race report during tracingDmitry Vyukov2015-02-031-0/+9
* runtime: rename m.gcing to m.preemptoff and make it a stringAustin Clements2015-02-021-6/+6
* runtime: fix trace ticks frequency on windowsDmitry Vyukov2015-01-301-2/+10
* runtime: add tracing of runtime eventsDmitry Vyukov2015-01-281-1/+1
* runtime: add execution tracing functionalityDmitry Vyukov2015-01-281-0/+790