mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[NTOS:KD] Improve the display of the output providers' signons.
This commit is contained in:
parent
a8bcc8d7a1
commit
422621622d
2 changed files with 9 additions and 3 deletions
|
@ -229,7 +229,7 @@ KdpDebugLogInit(
|
|||
/* Register for later BootPhase 2 reinitialization */
|
||||
DispatchTable->KdpInitRoutine = KdpDebugLogInit;
|
||||
|
||||
HalDisplayString("\r\n File log debugging enabled\r\n\r\n");
|
||||
HalDisplayString(" File log debugging enabled\r\n");
|
||||
}
|
||||
else if (BootPhase >= 2)
|
||||
{
|
||||
|
@ -413,7 +413,7 @@ KdpSerialInit(
|
|||
}
|
||||
else if (BootPhase == 1)
|
||||
{
|
||||
HalDisplayString("\r\n Serial debugging enabled\r\n\r\n");
|
||||
HalDisplayString(" Serial debugging enabled\r\n");
|
||||
}
|
||||
|
||||
return STATUS_SUCCESS;
|
||||
|
@ -526,7 +526,7 @@ KdpScreenInit(
|
|||
/* Take control of the display */
|
||||
KdpScreenAcquire();
|
||||
|
||||
HalDisplayString("\r\n Screen debugging enabled\r\n\r\n");
|
||||
HalDisplayString(" Screen debugging enabled\r\n");
|
||||
}
|
||||
|
||||
return STATUS_SUCCESS;
|
||||
|
|
|
@ -305,6 +305,9 @@ KdDebuggerInitialize1(
|
|||
BOOLEAN Success = FALSE;
|
||||
BOOLEAN ReinitForPhase2 = FALSE;
|
||||
|
||||
/* Make space for the displayed providers' signons */
|
||||
HalDisplayString("\r\n");
|
||||
|
||||
/* Call the registered providers */
|
||||
for (CurrentEntry = KdProviders.Flink;
|
||||
CurrentEntry != &KdProviders; NOTHING)
|
||||
|
@ -329,6 +332,9 @@ KdDebuggerInitialize1(
|
|||
ReinitForPhase2 = (ReinitForPhase2 || CurrentTable->KdpInitRoutine);
|
||||
}
|
||||
|
||||
/* Make space for the displayed providers' signons */
|
||||
HalDisplayString("\r\n");
|
||||
|
||||
NtGlobalFlag |= FLG_STOP_ON_EXCEPTION;
|
||||
|
||||
/* If we don't need to reinitialize providers for Phase 2, we are done */
|
||||
|
|
Loading…
Reference in a new issue