blob: 9996aa665675fcb413fda959e505f223d0f53ef4 (
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
|
#ifndef SYNC_H
#define SYNC_H
class sync {
public:
static void yield();
static void sleep(size_t timeout_in_ms);
static void random_sleep(size_t max_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);
}
};
/**
* 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 */
|