Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for StoreRel (0.2 sec)

  1. src/internal/runtime/atomic/types.go

    // on this thread can be observed to occur after it.
    //
    // WARNING: Use sparingly and with great care.
    //
    //go:nosplit
    func (u *Uint32) StoreRelease(value uint32) {
    	StoreRel(&u.value, value)
    }
    
    // CompareAndSwap atomically compares u's value with old,
    // and if they're equal, swaps u's value with new.
    // It reports whether the swap ran.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	alias("internal/runtime/atomic", "StoreRel", "internal/runtime/atomic", "Store", lwatomics...)
    	alias("internal/runtime/atomic", "StoreRel64", "internal/runtime/atomic", "Store64", lwatomics...)
    	alias("internal/runtime/atomic", "StoreReluintptr", "internal/runtime/atomic", "StoreRel", p4...)
    	alias("sync", "runtime_StoreReluintptr", "internal/runtime/atomic", "StoreRel", p4...) // linknamed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top