Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GoroutineTransition (0.21 sec)

  1. src/cmd/trace/gen.go

    	GlobalMetric(ctx *traceContext, ev *trace.Event)
    
    	// Goroutine parts.
    	GoroutineLabel(ctx *traceContext, ev *trace.Event)
    	GoroutineRange(ctx *traceContext, ev *trace.Event)
    	GoroutineTransition(ctx *traceContext, ev *trace.Event)
    
    	// Proc parts.
    	ProcRange(ctx *traceContext, ev *trace.Event)
    	ProcTransition(ctx *traceContext, ev *trace.Event)
    
    	// User annotations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/internal/trace/traceviewer/emitter.go

    func (e *Emitter) HeapAlloc(ts time.Duration, v uint64) {
    	e.heapStats.heapAlloc = v
    	e.emitHeapCounters(ts)
    }
    
    func (e *Emitter) Focus(id uint64) {
    	e.focusResource = id
    }
    
    func (e *Emitter) GoroutineTransition(ts time.Duration, from, to GState) {
    	e.gstates[from]--
    	e.gstates[to]++
    	if e.prevGstates == e.gstates {
    		return
    	}
    	if e.tsWithinRange(ts) {
    		e.OptionalEvent(&format.Event{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
Back to top