Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for StoreRel (0.08 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)
Back to top