summaryrefslogtreecommitdiff
path: root/src/thread.h
diff options
context:
space:
mode:
authordeva <deva>2005-09-12 15:34:25 +0000
committerdeva <deva>2005-09-12 15:34:25 +0000
commit701608f39c59b530f6cede66ec24e9ddda8beae6 (patch)
treee974077734a45e0e6bb5b487b230922656834bed /src/thread.h
parent84e9873f846478476487d5cd2587e5879a0be8ea (diff)
*** empty log message ***
Diffstat (limited to 'src/thread.h')
-rw-r--r--src/thread.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/thread.h b/src/thread.h
index 3ed3c93..6b7a52a 100644
--- a/src/thread.h
+++ b/src/thread.h
@@ -37,9 +37,10 @@ public:
virtual ~Thread();
void run();
+ void wait_stop();
virtual void thread_main() = 0;
-
+
private:
pthread_t tid;
};