diff options
Diffstat (limited to 'src/stable/thread.cpp')
-rw-r--r-- | src/stable/thread.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/stable/thread.cpp b/src/stable/thread.cpp index e4563a2..0d0b768 100644 --- a/src/stable/thread.cpp +++ b/src/stable/thread.cpp | |||
@@ -9,6 +9,25 @@ | |||
9 | 9 | ||
10 | #include "bu/config.h" | 10 | #include "bu/config.h" |
11 | 11 | ||
12 | Bu::ThreadId::ThreadId( pthread_t tId ) : | ||
13 | tId( tId ) | ||
14 | { | ||
15 | } | ||
16 | |||
17 | Bu::ThreadId::ThreadId() | ||
18 | { | ||
19 | } | ||
20 | |||
21 | bool Bu::ThreadId::operator==( const Bu::ThreadId &rhs ) | ||
22 | { | ||
23 | return pthread_equal( tId, rhs.tId ); | ||
24 | } | ||
25 | |||
26 | bool Bu::ThreadId::operator!=( const ThreadId &rhs ) | ||
27 | { | ||
28 | return !pthread_equal( tId, rhs.tId ); | ||
29 | } | ||
30 | |||
12 | Bu::Thread::Thread() | 31 | Bu::Thread::Thread() |
13 | { | 32 | { |
14 | } | 33 | } |
@@ -17,6 +36,11 @@ Bu::Thread::~Thread() | |||
17 | { | 36 | { |
18 | } | 37 | } |
19 | 38 | ||
39 | Bu::ThreadId Bu::Thread::currentThread() | ||
40 | { | ||
41 | return ThreadId( pthread_self() ); | ||
42 | } | ||
43 | |||
20 | bool Bu::Thread::start() | 44 | bool Bu::Thread::start() |
21 | { | 45 | { |
22 | nHandle = pthread_create( &ptHandle, NULL, threadRunner, this ); | 46 | nHandle = pthread_create( &ptHandle, NULL, threadRunner, this ); |