Fix a bug that would result in a very long sleep. Change has been
submitted to the vendor. Obtained from: iwasaki
This commit is contained in:
parent
c7fe6a7bfb
commit
ade9d6fdcf
@ -815,7 +815,7 @@ AcpiOsSleep (
|
||||
UINT32 milliseconds)
|
||||
{
|
||||
|
||||
sleep ((seconds * 1000) + milliseconds);
|
||||
usleep (((seconds * 1000) + milliseconds) * 1000);
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user