[NTOSKRNL]

- Reset KdbNumberOfRowsPrinted and KdbNumberOfColsPrinted before reading new command in kernel debugger so if previous command printed nearly full page, new command won't show "Press q to abort" message before processing

svn path=/trunk/; revision=52064
This commit is contained in:
Rafal Harabien 2011-06-02 15:59:57 +00:00
parent 12f49ac10e
commit 33a2b85a57

View file

@ -2701,6 +2701,9 @@ KdbpCliMainLoop(
/* Main loop */
do
{
/* Reset the number of rows/cols printed */
KdbNumberOfRowsPrinted = KdbNumberOfColsPrinted = 0;
/* Print the prompt */
KdbpPrint("kdb:> ");