From 3540d18855d68434d4ab83bc55e590cc6898b175 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Thu, 15 Aug 2002 11:46:22 +0200 Subject: Improved cCondVar::Wait() and implemented cCondVar::TimedWait() --- thread.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'thread.h') diff --git a/thread.h b/thread.h index d9c8f3a6..9fc48b64 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/10 16:30:00 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); }; -- cgit v1.2.3