diff options
-rw-r--r-- | src/stable/thread.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stable/thread.h b/src/stable/thread.h index fdaac6c..477fb8b 100644 --- a/src/stable/thread.h +++ b/src/stable/thread.h | |||
@@ -28,6 +28,8 @@ namespace Bu | |||
28 | bool operator==( const ThreadId &rhs ); | 28 | bool operator==( const ThreadId &rhs ); |
29 | bool operator!=( const ThreadId &rhs ); | 29 | bool operator!=( const ThreadId &rhs ); |
30 | 30 | ||
31 | pthread_t getId() const { return tId; } | ||
32 | |||
31 | private: | 33 | private: |
32 | pthread_t tId; | 34 | pthread_t tId; |
33 | }; | 35 | }; |