blob: 91d6d5077c63a600219e20bf69614cb37df7af0d (
plain)
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
28
|
#include "Interlocked.hpp"
#include "Thread.h"
#include <iostream>
int main() {
volatile long long data = 0;
cru::Thread t1([&data] {
for (int i = 0; i < 100000; i++)
cru::CruInterlockedAdd(&data, 10);
});
cru::Thread t2([&data] {
for (int i = 0; i < 100000; i++)
cru::CruInterlockedAdd(&data, 10);
});
std::cout << "Created thread: " << t1.GetNativeID() << '\n';
std::cout << "Created thread: " << t2.GetNativeID() << '\n';
t1.Join();
t2.Join();
std::cout << "Answer is " << data << ", which is "
<< (data == 2000000 ? "correct" : "false") << '\n';
return 0;
}
|