summaryrefslogtreecommitdiff
path: root/time
diff options
context:
space:
mode:
authorbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2001-10-29 23:04:08 +0000
committerbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2001-10-29 23:04:08 +0000
commit424b9619a76d2af5d01ddf2eda8cbb867d15d7bc (patch)
tree7a73d3fee0ea01502c34255fb602384f4f635a5a /time
parent2fb484cf2fbc240c1a320178d9947c2c641d9903 (diff)
downloadlibapr-424b9619a76d2af5d01ddf2eda8cbb867d15d7bc.tar.gz
Added the NetWare delay() call to apr_sleep()
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62476 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'time')
-rw-r--r--time/unix/time.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/time/unix/time.c b/time/unix/time.c
index 1c26f8704..e5a069236 100644
--- a/time/unix/time.c
+++ b/time/unix/time.c
@@ -265,6 +265,8 @@ APR_DECLARE(void) apr_sleep(apr_interval_time_t t)
DosSleep(t/1000);
#elif defined(BEOS)
snooze(t);
+#elif defined(NETWARE)
+ delay(t);
#else
struct timeval tv;
tv.tv_usec = t % APR_USEC_PER_SEC;