summaryrefslogtreecommitdiff
path: root/thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'thread.h')
-rw-r--r--thread.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/thread.h b/thread.h
index d23814e..9fc48b6 100644
--- a/thread.h
+++ b/thread.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: thread.h 1.13 2002/06/01 14:55:31 kls Exp $
+ * $Id: thread.h 1.14 2002/08/15 11:40:06 kls Exp $
*/
#ifndef __THREAD_H
@@ -22,8 +22,8 @@ private:
public:
cCondVar(void);
~cCondVar();
- bool Wait(cMutex &Mutex);
- //bool TimedWait(cMutex &Mutex, unsigned long tmout);
+ void Wait(cMutex &Mutex);
+ bool TimedWait(cMutex &Mutex, int TimeoutMs);
void Broadcast(void);
//void Signal(void);
};