diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2002-07-15 07:25:18 +0000 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2002-07-15 07:25:18 +0000 |
commit | 1b3dc493daaf11d0752a8f637972c2f3254ee9e5 (patch) | |
tree | ebbb6147509ff8704d47cc3b15c44faeb4d4110d | |
parent | 5c1a46feb7ae8393349fc0bd86cc8d9498deef6d (diff) | |
download | apr-1b3dc493daaf11d0752a8f637972c2f3254ee9e5.tar.gz |
forewarned
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@63672 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | locks/win32/thread_cond.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/locks/win32/thread_cond.c b/locks/win32/thread_cond.c index 61f995c97..27cdb5100 100644 --- a/locks/win32/thread_cond.c +++ b/locks/win32/thread_cond.c @@ -115,7 +115,11 @@ APR_DECLARE(apr_status_t) apr_thread_cond_wait(apr_thread_cond_t *cond, 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; } |