Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LoadAcquire (0.92 sec)

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

    // license that can be found in the LICENSE file.
    
    //go:build amd64 || arm64 || loong64 || mips64 || mips64le || ppc64 || ppc64le || riscv64 || s390x || wasm
    
    package atomic
    
    // LoadAcquire is a partially unsynchronized version
    // of Load that relaxes ordering constraints. Other threads
    // may observe operations that precede this operation to
    // occur after it, but no operation that occurs after it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. src/internal/runtime/atomic/types.go

    type Uint32 struct {
    	noCopy noCopy
    	value  uint32
    }
    
    // Load accesses and returns the value atomically.
    //
    //go:nosplit
    func (u *Uint32) Load() uint32 {
    	return Load(&u.value)
    }
    
    // LoadAcquire is a partially unsynchronized version
    // of Load that relaxes ordering constraints. Other threads
    // may observe operations that precede this operation to
    // occur after it, but no operation that occurs after it
    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