summaryrefslogtreecommitdiff
path: root/time
diff options
context:
space:
mode:
authorBradley Nicholes <bnicholes@apache.org>2001-11-02 23:28:19 +0000
committerBradley Nicholes <bnicholes@apache.org>2001-11-02 23:28:19 +0000
commit4e07e6350ea2656859b69a79e4081133f1b99625 (patch)
tree400f7305857c99760f7df4203492458ffdbd8ded /time
parent8a064c696e53cf627a5b533f092c50c75c030090 (diff)
downloadapr-4e07e6350ea2656859b69a79e4081133f1b99625.tar.gz
Adjusted to deal with microseconds
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@62486 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'time')
-rw-r--r--time/unix/time.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/time/unix/time.c b/time/unix/time.c
index e5a069236..463101127 100644
--- a/time/unix/time.c
+++ b/time/unix/time.c
@@ -266,7 +266,7 @@ APR_DECLARE(void) apr_sleep(apr_interval_time_t t)
#elif defined(BEOS)
snooze(t);
#elif defined(NETWARE)
- delay(t);
+ delay(t/1000);
#else
struct timeval tv;
tv.tv_usec = t % APR_USEC_PER_SEC;