[FREELDR] Use StallExecutionProcessor instead of KeStallExecutionProcessor

The latter will only be available in rosload.exe.
This commit is contained in:
Timo Kreuzer 2024-11-03 17:01:42 +02:00
parent 78ded05547
commit adacd51a30

View file

@ -94,7 +94,7 @@ BOOLEAN CallPxe(UINT16 Service, PVOID Parameter)
if (Service != PXENV_TFTP_READ)
{
// HACK: this delay shouldn't be necessary
KeStallExecutionProcessor(100 * 1000); // 100 ms
StallExecutionProcessor(100 * 1000); // 100 ms
TRACE("PxeCall(0x%x, %p)\n", Service, Parameter);
}