- Remove CHECKPOINT macros from green.sys

svn path=/trunk/; revision=35637
This commit is contained in:
Stefan Ginsberg 2008-08-25 18:48:18 +00:00
parent a872a16180
commit 7afb74e857
2 changed files with 0 additions and 5 deletions

View file

@ -213,7 +213,6 @@ KeyboardDeviceWorker(
if (!Irp) if (!Irp)
{ {
/* no memory actually, try later */ /* no memory actually, try later */
CHECKPOINT;
KeStallExecutionProcessor(10); KeStallExecutionProcessor(10);
continue; continue;
} }

View file

@ -301,7 +301,6 @@ ScreenWrite(
if (!(DeviceExtension->Mode & ENABLE_PROCESSED_OUTPUT)) if (!(DeviceExtension->Mode & ENABLE_PROCESSED_OUTPUT))
{ {
/* raw output mode */ /* raw output mode */
CHECKPOINT;
Irp->IoStatus.Status = STATUS_NOT_SUPPORTED; Irp->IoStatus.Status = STATUS_NOT_SUPPORTED;
IoCompleteRequest (Irp, IO_NO_INCREMENT); IoCompleteRequest (Irp, IO_NO_INCREMENT);
@ -594,7 +593,6 @@ ScreenDeviceControl(
&& ConsoleDraw->SizeX == DeviceExtension->Columns && ConsoleDraw->SizeX == DeviceExtension->Columns
&& ConsoleDraw->SizeY == DeviceExtension->Rows) && ConsoleDraw->SizeY == DeviceExtension->Rows)
{ {
CHECKPOINT1;
/* search if we need to clear all screen */ /* search if we need to clear all screen */
DoOptimization = TRUE; DoOptimization = TRUE;
Video = (PUCHAR)(ConsoleDraw + 1); Video = (PUCHAR)(ConsoleDraw + 1);
@ -603,14 +601,12 @@ ScreenDeviceControl(
{ {
if (Video[x++] != ' ') if (Video[x++] != ' ')
{ {
CHECKPOINT1;
DoOptimization = FALSE; DoOptimization = FALSE;
} }
/*if (Video[x++] != DeviceExtension->CharAttribute) DoOptimization = FALSE; */ /*if (Video[x++] != DeviceExtension->CharAttribute) DoOptimization = FALSE; */
} }
if (DoOptimization) if (DoOptimization)
{ {
CHECKPOINT1;
AddToSendBuffer(DeviceExtension, 4, ESC, '[', '2', 'J'); AddToSendBuffer(DeviceExtension, 4, ESC, '[', '2', 'J');
} }
} }