-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththread.h
55 lines (46 loc) · 952 Bytes
/
thread.h
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
#ifndef JWUTIL_THREAD_H
#define JWUTIL_THREAD_H
#include <thread>
#include <assert.h>
namespace jw_util
{
class Thread
{
public:
Thread() = delete;
static void set_main_thread()
{
#ifndef NDEBUG
if (set_main_thread_id)
{
assert(main_thread_id == std::this_thread::get_id());
}
else
{
set_main_thread_id = true;
}
main_thread_id = std::this_thread::get_id();
#endif
}
static void assert_main_thread()
{
#ifndef NDEBUG
assert(set_main_thread_id);
assert(std::this_thread::get_id() == main_thread_id);
#endif
}
static void assert_child_thread()
{
#ifndef NDEBUG
assert(set_main_thread_id);
assert(std::this_thread::get_id() != main_thread_id);
#endif
}
private:
#ifndef NDEBUG
static std::thread::id main_thread_id;
static bool set_main_thread_id;
#endif
};
}
#endif // JWUTIL_THREAD_H