blob: 562d2a1b7cdc8e6d82e78ac8e4c0d16b8a105e07 (
plain) (
blame)
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
|
#ifndef SYNC_H
#define SYNC_H
class sync {
public:
static void yield();
template <class T>
static bool compare_and_swap(T *address,
T oldValue, T newValue) {
return __sync_bool_compare_and_swap(address, oldValue, newValue);
}
};
/**
* Thread utility class. Derive and implement your own run() method.
*/
class rust_thread {
public:
#if defined(__WIN32__)
HANDLE thread;
#else
pthread_t thread;
#endif
void start();
virtual void run() {
return;
}
void join();
bool is_running();
};
#endif /* SYNC_H */
|