Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/runtime/proc.go

    	}
    
    retry:
    	h := atomic.LoadAcq(&pp.runqhead) // load-acquire, synchronize with consumers
    	t := pp.runqtail
    	if t-h < uint32(len(pp.runq)) {
    		pp.runq[t%uint32(len(pp.runq))].set(gp)
    		atomic.StoreRel(&pp.runqtail, t+1) // store-release, makes the item available for consumption
    		return
    	}
    	if runqputslow(pp, gp, h, t) {
    		return
    	}
    	// the queue is not full, now the put above must succeed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top