AtomicNativePtr

class AtomicNativePtr(value_: NativePtr)

Constructors

Link copied to clipboard

Functions

Link copied to clipboard
external fun compareAndSet(expected: NativePtr, new: NativePtr): Boolean

Compares value with expected and replaces it with new value if values matches.

Link copied to clipboard
external fun compareAndSwap(expected: NativePtr, new: NativePtr): NativePtr

Compares value with expected and replaces it with new value if values matches. If new value is not null, it must be frozen or permanent object.

Link copied to clipboard
open override fun toString(): String

Returns the string representation of this object.

Properties

Link copied to clipboard

The value being held by this class.