summaryrefslogtreecommitdiffstats
path: root/core/Thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/Thread.c')
-rw-r--r--core/Thread.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/Thread.c b/core/Thread.c
index b5635116e..8c63b2423 100644
--- a/core/Thread.c
+++ b/core/Thread.c
@@ -1,4 +1,4 @@
-/* $Id: Thread.c,v 1.12 2004/03/04 17:57:17 titer Exp $
+/* $Id: Thread.c,v 1.13 2004/03/16 16:14:03 titer Exp $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.m0k.org/>.
@@ -164,7 +164,7 @@ HBCond * HBCondInit()
#elif defined( HB_MACOSX ) || defined( HB_LINUX )
pthread_cond_init( &c->cond, NULL );
#elif defined( HB_CYGWIN )
- /* TODO */
+ c->event = CreateEvent( NULL, FALSE, FALSE, NULL );
#endif
return c;
@@ -178,7 +178,7 @@ void HBCondClose( HBCond ** _c )
#elif defined( HB_MACOSX ) || defined( HB_LINUX )
pthread_cond_destroy( &c->cond );
#elif defined( HB_CYGWIN )
- /* TODO */
+ CloseHandle( c->event );
#endif
free( c );