Skip to content

Commit c982235

Browse files
committed
[FREELDR] Use StallExecutionProcessor instead of KeStallExecutionProcessor
The latter will only be available in rosload.exe.
1 parent 995d8c0 commit c982235

File tree

1 file changed

+1
-1
lines changed
  • boot/freeldr/freeldr/lib/fs

1 file changed

+1
-1
lines changed

boot/freeldr/freeldr/lib/fs/pxe.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ BOOLEAN CallPxe(UINT16 Service, PVOID Parameter)
9494
if (Service != PXENV_TFTP_READ)
9595
{
9696
// HACK: this delay shouldn't be necessary
97-
KeStallExecutionProcessor(100 * 1000); // 100 ms
97+
StallExecutionProcessor(100 * 1000); // 100 ms
9898
TRACE("PxeCall(0x%x, %p)\n", Service, Parameter);
9999
}
100100

0 commit comments

Comments
 (0)