wrowe 2002/07/15 00:25:18
Modified: locks/win32 thread_cond.c
Log:
forewarned
Revision Changes Path
1.7 +5 -1 apr/locks/win32/thread_cond.c
Index: thread_cond.c
===================================================================
RCS file: /home/cvs/apr/locks/win32/thread_cond.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- thread_cond.c 13 Mar 2002 20:39:22 -0000 1.6
+++ thread_cond.c 15 Jul 2002 07:25:18 -0000 1.7
@@ -115,7 +115,11 @@
APR_DECLARE(apr_status_t) apr_thread_cond_timedwait(apr_thread_cond_t *cond,
apr_thread_mutex_t
*mutex,
- apr_interval_time_t
timeout){
+ apr_interval_time_t
timeout)
+{
+ /* Remember when implementing, timeout is usec,
+ * Win32 Wait functions take msec
+ */
return APR_ENOTIMPL;
}