https://git.reactos.org/?p=reactos.git;a=commitdiff;h=adacd51a300bea4f12839…
commit adacd51a300bea4f12839e9ce5d07ff9f284f6a4
Author: Timo Kreuzer <timo.kreuzer(a)reactos.org>
AuthorDate: Sun Nov 3 17:01:42 2024 +0200
Commit: Timo Kreuzer <timo.kreuzer(a)reactos.org>
CommitDate: Tue Feb 4 16:45:48 2025 +0200
[FREELDR] Use StallExecutionProcessor instead of KeStallExecutionProcessor
The latter will only be available in rosload.exe.
---
boot/freeldr/freeldr/lib/fs/pxe.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/boot/freeldr/freeldr/lib/fs/pxe.c b/boot/freeldr/freeldr/lib/fs/pxe.c
index 1a1866ed058..93e2de75abf 100644
--- a/boot/freeldr/freeldr/lib/fs/pxe.c
+++ b/boot/freeldr/freeldr/lib/fs/pxe.c
@@ -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);
}