- 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)
{
/* no memory actually, try later */
CHECKPOINT;
KeStallExecutionProcessor(10);
continue;
}

View file

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