From 7d00a4ad3d853a7fb8deb8c9076c67b314859e3e Mon Sep 17 00:00:00 2001 From: njl Date: Thu, 7 Aug 2003 18:19:12 +0000 Subject: Fix a bug that would result in a very long sleep. Change has been submitted to the vendor. Obtained from: iwasaki --- sys/contrib/dev/acpica/osunixxf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys') diff --git a/sys/contrib/dev/acpica/osunixxf.c b/sys/contrib/dev/acpica/osunixxf.c index 6b463ac..ecb7228 100644 --- a/sys/contrib/dev/acpica/osunixxf.c +++ b/sys/contrib/dev/acpica/osunixxf.c @@ -815,7 +815,7 @@ AcpiOsSleep ( UINT32 milliseconds) { - sleep ((seconds * 1000) + milliseconds); + usleep (((seconds * 1000) + milliseconds) * 1000); return; } -- cgit v1.1