xtd 0.2.0
Loading...
Searching...
No Matches
interlocked.h
Go to the documentation of this file.
1
4#pragma once
5#include "../core_export.h"
6#include "../lock.h"
7#include "../object.h"
8#include "../static.h"
9#include "../types.h"
10
12namespace xtd {
14 namespace threading {
41 public:
43
49 static int32 add(int32& location, int32 value) noexcept;
54 static int64 add(int64& location, int64 value) noexcept;
55
61 static double compare_exchange(double& location, double value, double comparand) noexcept;
67 static int32 compare_exchange(int32& location, int32 value, int32 comparand) noexcept;
73 static int64 compare_exchange(int64& location, int64 value, int64 comparand) noexcept;
75 static slong compare_exchange(slong& location, slong value, slong comparand) noexcept;
82 static void* compare_exchange(void*& location, void* value, void* 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;
91 lock_(location) {
92 if (location.equals(comparand)) location = value;
93 }
94 return retValue;
95 }
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;
104 lock_(location) {
105 if (location == comparand) location = value;
106 }
107 return retValue;
108 }
114 static float compare_exchange(float& location, float value, float comparand) noexcept;
115
122 static int32 decrement(int32& location) noexcept;
126 static int64 decrement(int64& location) noexcept;
127
132 template<typename type_t>
133 static type_t exchange(type_t& location, type_t value) {
134 type_t original = location;
135 lock_(location)
136 location = value;
137 return original;
138 }
143 static double exchange(double& location, double value) noexcept;
151 static int32 exchange(int32& location, int32 value) noexcept;
156 static int64 exchange(int64& location, int64 value) noexcept;
158 static slong exchange(slong& location, slong 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;
172 lock_(location)
173 location = value;
174 return original;
175 }
180 static float exchange(float& location, float value) noexcept;
181
188 static int32 increment(int32& location) noexcept;
192 static int64 increment(int64& location) noexcept;
193
198 static void memory_barrier() noexcept;
199
203 static int64 read(int64& location) noexcept;
205 };
206 }
207}
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