Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for RemoveIdleMarkWorker (0.25 sec)

  1. src/runtime/mgcpacer.go

    	p := c.idleMarkWorkers.Load()
    	n, max := int32(p&uint64(^uint32(0))), int32(p>>32)
    	return n < max
    }
    
    // removeIdleMarkWorker must be called when a new idle mark worker stops executing.
    func (c *gcControllerState) removeIdleMarkWorker() {
    	for {
    		old := c.idleMarkWorkers.Load()
    		n, max := int32(old&uint64(^uint32(0))), int32(old>>32)
    		if n-1 < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top