We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1db1bce commit 7b4d618Copy full SHA for 7b4d618
ntoskrnl/ex/dbgctrl.c
@@ -271,6 +271,17 @@ NtSystemDebugControl(
271
break;
272
273
case SysDbgBreakPoint:
274
+ if (KdDebuggerEnabled)
275
+ {
276
+ DbgBreakPointWithStatus(DBG_STATUS_DEBUG_CONTROL);
277
+ Status = STATUS_SUCCESS;
278
+ }
279
+ else
280
281
+ Status = STATUS_UNSUCCESSFUL;
282
283
+ break;
284
+
285
case SysDbgEnableKernelDebugger:
286
case SysDbgDisableKernelDebugger:
287
case SysDbgGetAutoKdEnable:
0 commit comments