Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SwapPointer (0.23 sec)

  1. src/sync/atomic/doc.go

    // Consider using the more ergonomic and less error-prone [Uintptr.Swap] instead.
    func SwapUintptr(addr *uintptr, new uintptr) (old uintptr)
    
    // SwapPointer atomically stores new into *addr and returns the previous *addr value.
    // Consider using the more ergonomic and less error-prone [Pointer.Swap] instead.
    func SwapPointer(addr *unsafe.Pointer, new unsafe.Pointer) (old unsafe.Pointer)
    
    // CompareAndSwapInt32 executes the compare-and-swap operation for an int32 value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top