Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for initialGen (0.11 sec)

  1. src/internal/trace/order.go

    // required to) continue to call Next until it is exhausted.
    func (o *ordering) Advance(ev *baseEvent, evt *evTable, m ThreadID, gen uint64) (bool, error) {
    	if o.initialGen == 0 {
    		// Set the initial gen if necessary.
    		o.initialGen = gen
    	}
    
    	var curCtx, newCtx schedCtx
    	curCtx.M = m
    	newCtx.M = m
    
    	var ms *mState
    	if m == NoThread {
    		curCtx.P = NoProc
    		curCtx.G = NoGoroutine
    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