https://git.reactos.org/?p=reactos.git;a=commitdiff;h=1db1bceaa728ab13c58e1…
commit 1db1bceaa728ab13c58e15da866d5a602208987b
Author: Hervé Poussineau <hpoussin(a)reactos.org>
AuthorDate: Sun Sep 22 21:40:23 2024 +0200
Commit: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
CommitDate: Tue Jan 28 22:00:48 2025 +0100
[NTOS:KD64] Implement KdSystemDebugControl: SysDbgCheckLowMemory
---
ntoskrnl/kd64/kdapi.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/ntoskrnl/kd64/kdapi.c b/ntoskrnl/kd64/kdapi.c
index 482c817a9bc..76f6786c112 100644
--- a/ntoskrnl/kd64/kdapi.c
+++ b/ntoskrnl/kd64/kdapi.c
@@ -2571,8 +2571,7 @@ KdSystemDebugControl(
break;
case SysDbgCheckLowMemory:
- UNIMPLEMENTED;
- Status = STATUS_NOT_IMPLEMENTED;
+ Status = KdpSysCheckLowMemory(0);
break;
default: