summaryrefslogtreecommitdiff
path: root/time
diff options
context:
space:
mode:
authorBradley Nicholes <bnicholes@apache.org>2001-10-29 23:04:08 +0000
committerBradley Nicholes <bnicholes@apache.org>2001-10-29 23:04:08 +0000
commitbfd7f0de9d7aec59e648038d955c9c3132b59dab (patch)
tree7a73d3fee0ea01502c34255fb602384f4f635a5a /time
parentcf3cf8cefaad7d0f0175bf068a4a35234354d945 (diff)
downloadapr-bfd7f0de9d7aec59e648038d955c9c3132b59dab.tar.gz
Added the NetWare delay() call to apr_sleep()
git-svn-id: https://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;