diff options
author | bnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68> | 2001-11-02 23:28:19 +0000 |
---|---|---|
committer | bnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68> | 2001-11-02 23:28:19 +0000 |
commit | 2be069cf145f643bf95056e12fdb55e64c81a032 (patch) | |
tree | 400f7305857c99760f7df4203492458ffdbd8ded /time/unix | |
parent | cff4bbe7f714e757439d8fc499c6d9c43b706eb5 (diff) | |
download | libapr-2be069cf145f643bf95056e12fdb55e64c81a032.tar.gz |
Adjusted to deal with microseconds
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62486 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'time/unix')
-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; |