From 7afb74e857859e4b807336b856577fcb4e5e3eed Mon Sep 17 00:00:00 2001 From: Stefan Ginsberg Date: Mon, 25 Aug 2008 18:48:18 +0000 Subject: [PATCH] - Remove CHECKPOINT macros from green.sys svn path=/trunk/; revision=35637 --- rosapps/drivers/green/keyboard.c | 1 - rosapps/drivers/green/screen.c | 4 ---- 2 files changed, 5 deletions(-) diff --git a/rosapps/drivers/green/keyboard.c b/rosapps/drivers/green/keyboard.c index 0a4b1950154..511b8567ccc 100644 --- a/rosapps/drivers/green/keyboard.c +++ b/rosapps/drivers/green/keyboard.c @@ -213,7 +213,6 @@ KeyboardDeviceWorker( if (!Irp) { /* no memory actually, try later */ - CHECKPOINT; KeStallExecutionProcessor(10); continue; } diff --git a/rosapps/drivers/green/screen.c b/rosapps/drivers/green/screen.c index 618dbb44793..ed7bf841ac1 100644 --- a/rosapps/drivers/green/screen.c +++ b/rosapps/drivers/green/screen.c @@ -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'); } }