forked from BachiLi/diffvg
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathatomic.cpp
More file actions
27 lines (23 loc) · 770 Bytes
/
atomic.cpp
File metadata and controls
27 lines (23 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//A hacky solution to get around the Ellipse include
#ifdef WIN32
#include <windows.h>
#include <cstdint>
float win_atomic_add(float &target, float source) {
union { int i; float f; } old_val;
union { int i; float f; } new_val;
do {
old_val.f = target;
new_val.f = old_val.f + (float)source;
} while (InterlockedCompareExchange((LONG*)&target, (LONG)new_val.i, (LONG)old_val.i) != old_val.i);
return old_val.f;
}
double win_atomic_add(double &target, double source) {
union { int64_t i; double f; } old_val;
union { int64_t i; double f; } new_val;
do {
old_val.f = target;
new_val.f = old_val.f + (double)source;
} while (InterlockedCompareExchange64((LONG64*)&target, (LONG64)new_val.i, (LONG64)old_val.i) != old_val.i);
return old_val.f;
}
#endif