Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GCBegin (0.43 sec)

  1. src/internal/trace/event/go122/event.go

    	},
    	EvGCActive: event.Spec{
    		Name:         "GCActive",
    		Args:         []string{"dt", "gc_seq"},
    		IsTimedEvent: true,
    		StartEv:      EvGCBegin,
    	},
    	EvGCBegin: event.Spec{
    		Name:         "GCBegin",
    		Args:         []string{"dt", "gc_seq", "stack"},
    		IsTimedEvent: true,
    		StackIDs:     []int{2},
    	},
    	EvGCEnd: event.Spec{
    		Name:         "GCEnd",
    		Args:         []string{"dt", "gc_seq"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. src/runtime/traceruntime.go

    	// N.B. Only one GC can be running at a time, so this is naturally
    	// serialized by the caller.
    	trace.seqGC++
    }
    
    // GCStart traces a GCBegin event.
    //
    // Must be emitted by an actively running goroutine on an active P. This restriction can be changed
    // easily and only depends on where it's currently called.
    func (tl traceLocker) GCStart() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  3. src/cmd/trace/testdata/go122.test

    HeapAlloc dt=6 heapalloc_value=7620336
    HeapAlloc dt=376 heapalloc_value=7628528
    HeapAlloc dt=13 heapalloc_value=7636720
    HeapAlloc dt=7 heapalloc_value=7644912
    HeapAlloc dt=35 heapalloc_value=7653104
    GCBegin dt=23 gc_seq=3 stack=22
    STWBegin dt=73 kind_string=22 stack=28
    GoUnblock dt=258 g=4 g_seq=5 stack=29
    ProcsChange dt=80 procs_value=8 stack=30
    STWEnd dt=37
    GCMarkAssistBegin dt=96 stack=31
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    		return curCtx, true, nil
    	}
    	if seq != o.gcSeq+1 {
    		// This is not the right GC cycle.
    		return curCtx, false, nil
    	}
    	if o.gcState == gcRunning {
    		return curCtx, false, fmt.Errorf("encountered GCBegin while GC was already in progress")
    	}
    	o.gcSeq = seq
    	o.gcState = gcRunning
    	if err := validateCtx(curCtx, event.UserGoReqs); err != nil {
    		return curCtx, false, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
Back to top