blob: 8298f4028818d6367318fc3e7f7e5f40594b5dfe (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
// -*- c++ -*-
#ifndef SYNC_H
#define SYNC_H
class sync {
public:
static void yield();
static void sleep(size_t timeout_in_ms);
template <class T>
static bool compare_and_swap(T *address,
T oldValue, T newValue) {
return __sync_bool_compare_and_swap(address, oldValue, newValue);
}
template <class T>
static T increment(T *address) {
return __sync_add_and_fetch(address, 1);
}
template <class T>
static T decrement(T *address) {
return __sync_sub_and_fetch(address, 1);
}
template <class T>
static T increment(T &address) {
return __sync_add_and_fetch(&address, 1);
}
template <class T>
static T decrement(T &address) {
return __sync_sub_and_fetch(&address, 1);
}
};
/**
* Thread utility class. Derive and implement your own run() method.
*/
class rust_thread {
private:
volatile bool _is_running;
public:
#if defined(__WIN32__)
HANDLE thread;
#else
pthread_t thread;
#endif
rust_thread();
void start();
virtual void run() {
return;
}
void join();
bool is_running();
virtual ~rust_thread() {} // quiet the compiler
};
#endif /* SYNC_H */
|