Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for wasForked (0.07 sec)

  1. src/runtime/mranges.go

    // returns if the value was marked or not.
    func (b *atomicOffAddr) Load() (uintptr, bool) {
    	v := b.a.Load()
    	wasMarked := false
    	if v < 0 {
    		wasMarked = true
    		v = -v
    	}
    	return uintptr(v) + arenaBaseOffset, wasMarked
    }
    
    // addrRanges is a data structure holding a collection of ranges of
    // address space.
    //
    // The ranges are coalesced eagerly to reduce the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top