https://git.reactos.org/?p=reactos.git;a=commitdiff;h=cc762c2b7132991f828ac4d6b7315bcd3e962ccd
commit cc762c2b7132991f828ac4d6b7315bcd3e962ccd Author: Timo Kreuzer <timo.kreu...@reactos.org> AuthorDate: Mon Sep 23 15:06:35 2024 +0300 Commit: Timo Kreuzer <timo.kreu...@reactos.org> CommitDate: Sat Jan 25 16:33:27 2025 +0200 [NTDLL] Demote UNIMPLEMENTED to DPRINT in LdrpValidateImageForMp This avoids debug spam on SMP builds. --- dll/ntdll/ldr/ldrinit.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dll/ntdll/ldr/ldrinit.c b/dll/ntdll/ldr/ldrinit.c index 991f498dba2..5ee01e3e68d 100644 --- a/dll/ntdll/ldr/ldrinit.c +++ b/dll/ntdll/ldr/ldrinit.c @@ -1538,7 +1538,9 @@ VOID NTAPI LdrpValidateImageForMp(IN PLDR_DATA_TABLE_ENTRY LdrDataTableEntry) { - UNIMPLEMENTED; + DPRINT("LdrpValidateImageForMp is unimplemented\n"); + // TODO: + // Scan the LockPrefixTable in the load config directory } BOOLEAN