5#include "../core_export.h"
61 static double compare_exchange(
double& location,
double value,
double comparand)
noexcept;
88 template<
typename type_t>
89 static type_t
compare_exchange(
object& location,
const object& value,
const object& comparand)
noexcept {
90 type_t retValue = location;
92 if (location.equals(comparand)) location = value;
101 template<
typename type_t>
102 static type_t
compare_exchange(type_t& location, type_t value, type_t comparand)
noexcept {
103 type_t retValue = location;
105 if (location == comparand) location = value;
132 template<
typename type_t>
133 static type_t
exchange(type_t& location, type_t value) {
134 type_t original = location;
143 static double exchange(
double& location,
double value)
noexcept;
164 static void*
exchange(
void*& location,
void* value)
noexcept;
169 template<
typename type_t>
170 static type_t
exchange(
object& location,
const object& value)
noexcept {
171 type_t original = location;
180 static float exchange(
float& location,
float value)
noexcept;
Provides atomic operations for variables that are shared by multiple threads.
Definition interlocked.h:40
static double exchange(double &location, double value) noexcept
Sets a double-precision floating point number to a specified value and returns the original value,...
static int32 add(int32 &location, int32 value) noexcept
Adds two 32-bit integers and replaces the first integer with the sum, as an atomic operation.
static int64 exchange(int64 &location, int64 value) noexcept
Sets a 64-bit signed integer to a specified value and returns the original value, as an atomic operat...
static double compare_exchange(double &location, double value, double comparand) noexcept
Compares two Double for equality and, if they are equal, replaces one of the values.
static type_t exchange(object &location, const object &value) noexcept
Sets an object to a specified value and returns the original value, as an atomic operation.
Definition interlocked.h:170
static void memory_barrier() noexcept
Synchronizes memory access as follows: The processor that executes the current thread cannot reorder ...
static int32 increment(int32 &location) noexcept
Increments a specified variable and stores the result, as an atomic operation.
static int64 add(int64 &location, int64 value) noexcept
Adds two 64-bit integers and replaces the first integer with the sum, as an atomic operation.
static type_t compare_exchange(type_t &location, type_t value, type_t comparand) noexcept
Compares two instances of the specified reference type type_t for equality and, if they are equal,...
Definition interlocked.h:102
static void * exchange(void *&location, void *value) noexcept
Sets a platform-specific handles or pointers to a specified value and returns the original value,...
static int32 decrement(int32 &location) noexcept
Decrements a specified variable and stores the result, as an atomic operation.
static int64 compare_exchange(int64 &location, int64 value, int64 comparand) noexcept
Compares two 64-bit signed integers for equality and, if they are equal, replaces one of the values.
static type_t compare_exchange(object &location, const object &value, const object &comparand) noexcept
Compares two objects for equality and, if they are equal, replaces one of them.
Definition interlocked.h:89
static int32 compare_exchange(int32 &location, int32 value, int32 comparand) noexcept
Compares two 32-bit signed integers for equality and, if they are equal, replaces one of the values.
static float compare_exchange(float &location, float value, float comparand) noexcept
Compares two Single for equality and, if they are equal, replaces one of the values.
static void * compare_exchange(void *&location, void *value, void *comparand) noexcept
Compares two platform-specific handles or pointers for equality and, if they are equal,...
static float exchange(float &location, float value) noexcept
Sets a double-precision floating point number to a specified value and returns the original value,...
static int64 increment(int64 &location) noexcept
Increments a specified variable and stores the result, as an atomic operation.
static int64 decrement(int64 &location) noexcept
Decrements a specified variable and stores the result, as an atomic operation.
static int32 exchange(int32 &location, int32 value) noexcept
Sets a 32-bit signed integer to a specified value and returns the original value, as an atomic operat...
static type_t exchange(type_t &location, type_t value)
Sets a variable of the specified type type_t to a specified value and returns the original value,...
Definition interlocked.h:133
#define static_
This keyword is use to represent a static object. A static object can't be instantiated (constructors...
Definition static.h:37
#define core_export_
Define shared library export.
Definition core_export.h:13
#define lock_(object)
The lock_ keyword marks a statement block as a critical section by obtaining the mutual-exclusion loc...
Definition lock.h:85
int32_t int32
Represents a 32-bit signed integer.
Definition int32.h:23
int64_t int64
Represents a 64-bit signed integer.
Definition int64.h:23
__slong__ slong
Represents a 32-bit or 64-bit signed integer.
Definition slong.h:27
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10