summaryrefslogtreecommitdiff
path: root/time
diff options
context:
space:
mode:
authorGreg Stein <gstein@apache.org>2000-11-03 08:49:00 +0000
committerGreg Stein <gstein@apache.org>2000-11-03 08:49:00 +0000
commit790e1ba673f725cff2e1797a38c7dd9a7b83ee4b (patch)
tree869ccf260ddc8d4dd3f2ea2460fbbaf75c08fac2 /time
parent15fe361243ffecf5508570e47c379714ea627bff (diff)
downloadapr-790e1ba673f725cff2e1797a38c7dd9a7b83ee4b.tar.gz
add missing function
Submitted by: Branko Cibej <brane@xbc.nu> Reviewed by: Greg Stein git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60628 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'time')
-rw-r--r--time/win32/time.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/time/win32/time.c b/time/win32/time.c
index f45f74850..71d91396b 100644
--- a/time/win32/time.c
+++ b/time/win32/time.c
@@ -230,3 +230,7 @@ apr_status_t apr_put_os_exp_time(apr_exploded_time_t *aprtime,
return APR_SUCCESS;
}
+void apr_sleep(apr_interval_time_t t)
+{
+ Sleep(t/1000);
+}