Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for zeroedBase (0.15 sec)

  1. src/runtime/mheap.go

    		}
    		// Increase ha.zeroedBase so it's >= arenaLimit.
    		// We may be racing with other updates.
    		for arenaLimit > zeroedBase {
    			if atomic.Casuintptr(&ha.zeroedBase, zeroedBase, arenaLimit) {
    				break
    			}
    			zeroedBase = atomic.Loaduintptr(&ha.zeroedBase)
    			// Double check basic conditions of zeroedBase.
    			if zeroedBase <= arenaLimit && zeroedBase > arenaBase {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top