Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for minWhenModified (4.17 sec)

  1. src/runtime/time.go

    	// The wakeTime method uses minWhenHeap and minWhenModified
    	// to determine the next wake time.
    	// If minWhenHeap = 0, it means there are no timers in the heap.
    	minWhenHeap atomic.Int64
    
    	// minWhenModified is a lower bound on the minimum
    	// heap[i].when over timers with the timerModified bit set.
    	// If minWhenModified = 0, it means there are no timerModified timers in the heap.
    	minWhenModified atomic.Int64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
Back to top