From bfd7f0de9d7aec59e648038d955c9c3132b59dab Mon Sep 17 00:00:00 2001 From: Bradley Nicholes Date: Mon, 29 Oct 2001 23:04:08 +0000 Subject: 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 --- time/unix/time.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'time') 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; -- cgit v1.2.1