diff options
author | Bradley Nicholes <bnicholes@apache.org> | 2001-11-02 23:28:19 +0000 |
---|---|---|
committer | Bradley Nicholes <bnicholes@apache.org> | 2001-11-02 23:28:19 +0000 |
commit | 4e07e6350ea2656859b69a79e4081133f1b99625 (patch) | |
tree | 400f7305857c99760f7df4203492458ffdbd8ded /time | |
parent | 8a064c696e53cf627a5b533f092c50c75c030090 (diff) | |
download | apr-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.c | 2 |
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; |