Author: sginsberg
Date: Mon Aug 25 13:52:38 2008
New Revision: 35638
URL:
http://svn.reactos.org/svn/reactos?rev=35638&view=rev
Log:
- Remove deprecated CHECKPOINT/CHECKPOINT1 macros which basically translated into
DPRINT/DPRINT1("\n")
Modified:
trunk/reactos/base/setup/usetup/bootsup.c
trunk/reactos/drivers/filesystems/cdfs/dirctl.c
trunk/reactos/drivers/filesystems/fastfat/create.c
trunk/reactos/drivers/filesystems/fastfat/dir.c
trunk/reactos/drivers/filesystems/fastfat/direntry.c
trunk/reactos/drivers/filesystems/fastfat/dirwr.c
trunk/reactos/drivers/filesystems/fastfat/fat.c
trunk/reactos/drivers/filesystems/fastfat/fcb.c
trunk/reactos/drivers/filesystems/fastfat/fsctl.c
trunk/reactos/drivers/filesystems/fastfat/rw.c
trunk/reactos/drivers/filesystems/fastfat/volume.c
trunk/reactos/drivers/setup/blue/blue.c
trunk/reactos/hal/halx86/mp/ioapic.c
trunk/reactos/lib/fslib/ext2lib/Mke2fs.c
trunk/reactos/lib/rtl/dos8dot3.c
trunk/reactos/ntoskrnl/ex/shutdown.c
trunk/reactos/ntoskrnl/io/iomgr/bootlog.c
trunk/reactos/ntoskrnl/mm/balance.c
trunk/reactos/ntoskrnl/mm/marea.c
trunk/reactos/ntoskrnl/mm/section.c
trunk/reactos/subsystems/win32/csrss/win32csr/conio.c
trunk/reactos/subsystems/win32/csrss/win32csr/tuiconsole.c
trunk/reactos/subsystems/win32/win32k/ntuser/focus.c
Modified: trunk/reactos/base/setup/usetup/bootsup.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/setup/usetup/bootsup.…
==============================================================================
--- trunk/reactos/base/setup/usetup/bootsup.c [iso-8859-1] (original)
+++ trunk/reactos/base/setup/usetup/bootsup.c [iso-8859-1] Mon Aug 25 13:52:38 2008
@@ -979,7 +979,6 @@
NtClose(FileHandle);
if (!NT_SUCCESS(Status))
{
-CHECKPOINT1;
RtlFreeHeap(ProcessHeap, 0, OrigBootSector);
return(Status);
}
Modified: trunk/reactos/drivers/filesystems/cdfs/dirctl.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/cdfs/d…
==============================================================================
--- trunk/reactos/drivers/filesystems/cdfs/dirctl.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/cdfs/dirctl.c [iso-8859-1] Mon Aug 25 13:52:38 2008
@@ -189,7 +189,6 @@
if (FileToFind == NULL || FileToFind->Length == 0)
{
- CHECKPOINT;
RtlInitUnicodeString(&TempString, L".");
FileToFind = &TempString;
}
Modified: trunk/reactos/drivers/filesystems/fastfat/create.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/fastfa…
==============================================================================
--- trunk/reactos/drivers/filesystems/fastfat/create.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/fastfat/create.c [iso-8859-1] Mon Aug 25 13:52:38
2008
@@ -204,7 +204,6 @@
PathNameBuffer = ExAllocatePoolWithTag(NonPagedPool, PathNameBufferLength +
sizeof(WCHAR), TAG_VFAT);
if (!PathNameBuffer)
{
- CHECKPOINT1;
return STATUS_INSUFFICIENT_RESOURCES;
}
@@ -263,7 +262,6 @@
Status = RtlUpcaseUnicodeString(&FileToFindUpcase, FileToFindU, TRUE);
if (!NT_SUCCESS(Status))
{
- CHECKPOINT;
ExFreePool(PathNameBuffer);
return Status;
}
Modified: trunk/reactos/drivers/filesystems/fastfat/dir.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/fastfa…
==============================================================================
--- trunk/reactos/drivers/filesystems/fastfat/dir.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/fastfat/dir.c [iso-8859-1] Mon Aug 25 13:52:38 2008
@@ -478,7 +478,6 @@
*/
{
NTSTATUS RC = STATUS_SUCCESS;
- CHECKPOINT;
IrpContext->Irp->IoStatus.Information = 0;
switch (IrpContext->MinorFunction)
{
Modified: trunk/reactos/drivers/filesystems/fastfat/direntry.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/fastfa…
==============================================================================
--- trunk/reactos/drivers/filesystems/fastfat/direntry.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/fastfat/direntry.c [iso-8859-1] Mon Aug 25 13:52:38
2008
@@ -205,7 +205,6 @@
if (FileOffset.u.LowPart >= pDirFcb->RFCB.FileSize.u.LowPart ||
!CcMapData(pDirFcb->FileObject, &FileOffset, PAGE_SIZE, TRUE,
pContext, pPage))
{
- CHECKPOINT;
*pContext = NULL;
return STATUS_NO_MORE_ENTRIES;
}
@@ -230,7 +229,6 @@
if (FileOffset.u.LowPart >= pDirFcb->RFCB.FileSize.u.LowPart ||
!CcMapData(pDirFcb->FileObject, &FileOffset, PAGE_SIZE, TRUE,
pContext, pPage))
{
- CHECKPOINT;
*pContext = NULL;
return STATUS_NO_MORE_ENTRIES;
}
@@ -328,7 +326,6 @@
if (FileOffset.u.LowPart >= pDirFcb->RFCB.FileSize.u.LowPart ||
!CcMapData(pDirFcb->FileObject, &FileOffset, PAGE_SIZE, TRUE, pContext,
pPage))
{
- CHECKPOINT;
*pContext = NULL;
return STATUS_NO_MORE_ENTRIES;
}
@@ -440,7 +437,6 @@
if (FileOffset.u.LowPart >= pDirFcb->RFCB.FileSize.u.LowPart ||
!CcMapData(pDirFcb->FileObject, &FileOffset, PAGE_SIZE, TRUE,
pContext, pPage))
{
- CHECKPOINT;
*pContext = NULL;
return STATUS_NO_MORE_ENTRIES;
}
Modified: trunk/reactos/drivers/filesystems/fastfat/dirwr.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/fastfa…
==============================================================================
--- trunk/reactos/drivers/filesystems/fastfat/dirwr.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/fastfat/dirwr.c [iso-8859-1] Mon Aug 25 13:52:38
2008
@@ -137,7 +137,6 @@
if (*start + nbSlots > count)
{
LARGE_INTEGER AllocationSize;
- CHECKPOINT;
/* extend the directory */
if (vfatFCBIsRoot(pDirFcb) && DeviceExt->FatInfo.FatType !=
FAT32)
{
@@ -270,7 +269,6 @@
if (i == 100) /* FIXME : what to do after this ? */
{
ExFreePoolWithTag(Buffer, TAG_VFAT);
- CHECKPOINT;
return STATUS_UNSUCCESSFUL;
}
IsNameLegal = RtlIsNameLegalDOS8Dot3(&DirContext.ShortNameU, &NameA,
&SpacesFound);
@@ -440,7 +438,6 @@
if (DirContext.StartIndex / i == DirContext.DirIndex / i)
{
/* one cluster */
- CHECKPOINT;
CcPinRead(ParentFcb->FileObject, &FileOffset, nbSlots *
sizeof(FAT_DIR_ENTRY),
TRUE, &Context, (PVOID*)&pFatEntry);
if (nbSlots > 1)
@@ -452,7 +449,6 @@
else
{
/* two clusters */
- CHECKPOINT;
size = DeviceExt->FatInfo.BytesPerCluster -
(DirContext.StartIndex * sizeof(FAT_DIR_ENTRY)) %
DeviceExt->FatInfo.BytesPerCluster;
i = size / sizeof(FAT_DIR_ENTRY);
@@ -533,7 +529,6 @@
if (DirContext.LongNameU.Length / sizeof(WCHAR) > 42)
{
/* name too long */
- CHECKPOINT;
return STATUS_NAME_TOO_LONG;
}
Modified: trunk/reactos/drivers/filesystems/fastfat/fat.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/fastfa…
==============================================================================
--- trunk/reactos/drivers/filesystems/fastfat/fat.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/fastfat/fat.c [iso-8859-1] Mon Aug 25 13:52:38 2008
@@ -653,7 +653,6 @@
DeviceExt, CurrentCluster);
ExAcquireResourceExclusiveLite(&DeviceExt->FatResource, TRUE);
- CHECKPOINT;
/*
* If the file hasn't any clusters allocated then we need special
* handling
Modified: trunk/reactos/drivers/filesystems/fastfat/fcb.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/fastfa…
==============================================================================
--- trunk/reactos/drivers/filesystems/fastfat/fcb.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/fastfat/fcb.c [iso-8859-1] Mon Aug 25 13:52:38 2008
@@ -300,14 +300,12 @@
if (RtlEqualUnicodeString(&FileNameU, FcbNameU, TRUE))
{
rcFCB->RefCount++;
- CHECKPOINT;
return rcFCB;
}
}
}
entry = entry->next;
}
- CHECKPOINT;
return NULL;
}
@@ -536,7 +534,6 @@
newCCB = ExAllocateFromNPagedLookasideList(&VfatGlobalData->CcbLookasideList);
if (newCCB == NULL)
{
- CHECKPOINT;
return STATUS_INSUFFICIENT_RESOURCES;
}
RtlZeroMemory (newCCB, sizeof (VFATCCB));
Modified: trunk/reactos/drivers/filesystems/fastfat/fsctl.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/fastfa…
==============================================================================
--- trunk/reactos/drivers/filesystems/fastfat/fsctl.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/fastfat/fsctl.c [iso-8859-1] Mon Aug 25 13:52:38
2008
@@ -241,7 +241,6 @@
if (PartitionInfoIsValid &&
FatInfo.Sectors > PartitionInfo.PartitionLength.QuadPart /
FatInfo.BytesPerSector)
{
- CHECKPOINT1;
*RecognizedFS = FALSE;
}
Modified: trunk/reactos/drivers/filesystems/fastfat/rw.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/fastfa…
==============================================================================
--- trunk/reactos/drivers/filesystems/fastfat/rw.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/fastfat/rw.c [iso-8859-1] Mon Aug 25 13:52:38 2008
@@ -194,7 +194,6 @@
if (FirstCluster == 1)
{
// Directory of FAT12/16 needs a special handling
- CHECKPOINT;
if (ReadOffset.u.LowPart + Length > DeviceExt->FatInfo.rootDirectorySectors *
BytesPerSector)
{
Length = DeviceExt->FatInfo.rootDirectorySectors * BytesPerSector -
ReadOffset.u.LowPart;
@@ -660,7 +659,6 @@
!(Fcb->Flags & (FCB_IS_PAGE_FILE|FCB_IS_VOLUME)))
{
// cached read
- CHECKPOINT;
Status = STATUS_SUCCESS;
if (ByteOffset.u.LowPart + Length > Fcb->RFCB.FileSize.u.LowPart)
{
@@ -668,7 +666,6 @@
Status = /*STATUS_END_OF_FILE*/STATUS_SUCCESS;
}
- CHECKPOINT;
if (IrpContext->FileObject->PrivateCacheMap == NULL)
{
CcInitializeCacheMap(IrpContext->FileObject,
@@ -684,7 +681,6 @@
Status = IrpContext->Irp->IoStatus.Status;//STATUS_PENDING;
goto ByeBye;
}
- CHECKPOINT;
if (!NT_SUCCESS(IrpContext->Irp->IoStatus.Status))
{
Status = IrpContext->Irp->IoStatus.Status;
@@ -693,7 +689,6 @@
else
{
// non cached read
- CHECKPOINT;
if (ByteOffset.QuadPart + Length > ROUND_UP(Fcb->RFCB.FileSize.QuadPart,
BytesPerSector))
{
Length = (ULONG)(ROUND_UP(Fcb->RFCB.FileSize.QuadPart, BytesPerSector) -
ByteOffset.QuadPart);
@@ -951,7 +946,6 @@
IrpContext->DeviceExt, &AllocationSize);
if (!NT_SUCCESS (Status))
{
- CHECKPOINT;
goto ByeBye;
}
}
@@ -960,7 +954,6 @@
!(Fcb->Flags & (FCB_IS_PAGE_FILE|FCB_IS_VOLUME)))
{
// cached write
- CHECKPOINT;
if (IrpContext->FileObject->PrivateCacheMap == NULL)
{
@@ -984,12 +977,10 @@
{
Status = STATUS_UNSUCCESSFUL;
}
- CHECKPOINT;
}
else
{
// non cached write
- CHECKPOINT;
if (ByteOffset.QuadPart > OldFileSize.QuadPart)
{
Modified: trunk/reactos/drivers/filesystems/fastfat/volume.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/fastfa…
==============================================================================
--- trunk/reactos/drivers/filesystems/fastfat/volume.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/fastfat/volume.c [iso-8859-1] Mon Aug 25 13:52:38
2008
@@ -179,7 +179,6 @@
if (sizeof(DeviceObject->Vpb->VolumeLabel) <
FsLabelInfo->VolumeLabelLength)
{
- CHECKPOINT;
return STATUS_NAME_TOO_LONG;
}
Modified: trunk/reactos/drivers/setup/blue/blue.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/setup/blue/blue.c?…
==============================================================================
--- trunk/reactos/drivers/setup/blue/blue.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/setup/blue/blue.c [iso-8859-1] Mon Aug 25 13:52:38 2008
@@ -627,7 +627,6 @@
offset = (Buf->dwCoord.Y * DeviceExtension->Columns * 2) +
(Buf->dwCoord.X * 2);
- CHECKPOINT
for (dwCount = 0; dwCount < Buf->nLength; dwCount++)
{
Modified: trunk/reactos/hal/halx86/mp/ioapic.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/hal/halx86/mp/ioapic.c?rev…
==============================================================================
--- trunk/reactos/hal/halx86/mp/ioapic.c [iso-8859-1] (original)
+++ trunk/reactos/hal/halx86/mp/ioapic.c [iso-8859-1] Mon Aug 25 13:52:38 2008
@@ -648,15 +648,13 @@
i, IRQMap[i].IrqType, IRQMap[i].IrqFlag, IRQMap[i].SrcBusId,
IRQMap[i].SrcBusIrq, IRQMap[i].DstApicId, IRQMap[i].DstApicInt);
- if(1 != HalSetBusDataByOffset(PCIConfiguration,
+ HalSetBusDataByOffset(PCIConfiguration,
IRQMap[i].SrcBusId,
(IRQMap[i].SrcBusIrq >> 2) & 0x1f,
&IRQMap[i].DstApicInt,
0x3c /*PCI_INTERRUPT_LINE*/,
- 1))
- {
- CHECKPOINT;
- }
+ 1);
+
}
}
}
Modified: trunk/reactos/lib/fslib/ext2lib/Mke2fs.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/fslib/ext2lib/Mke2fs.c…
==============================================================================
--- trunk/reactos/lib/fslib/ext2lib/Mke2fs.c [iso-8859-1] (original)
+++ trunk/reactos/lib/fslib/ext2lib/Mke2fs.c [iso-8859-1] Mon Aug 25 13:52:38 2008
@@ -813,17 +813,14 @@
EXT2_FILESYS FileSys;
ULONG Percent;
- CHECKPOINT;
Callback(PROGRESS, 0, (PVOID)&Percent);
- CHECKPOINT;
RtlZeroMemory(&Ext2Sb, sizeof(EXT2_SUPER_BLOCK));
RtlZeroMemory(&FileSys, sizeof(EXT2_FILESYS));
FileSys.ext2_sb = &Ext2Sb;
- CHECKPOINT;
if (!NT_SUCCESS(Ext2OpenDevice(&FileSys, DriveRoot)))
{
@@ -831,7 +828,6 @@
goto clean_up;
}
- CHECKPOINT;
if (!NT_SUCCESS(Ext2GetMediaInfo(&FileSys)))
{
@@ -844,7 +840,6 @@
Ext2Sb.s_blocks_count = FileSys.PartInfo.PartitionLength.QuadPart /
EXT2_BLOCK_SIZE(&Ext2Sb);
- CHECKPOINT;
/*
* Calculate number of inodes based on the inode ratio
@@ -857,7 +852,6 @@
*/
Ext2Sb.s_r_blocks_count = (Ext2Sb.s_blocks_count * 5) / 100;
- CHECKPOINT;
Status = Ext2LockVolume(&FileSys);
if (NT_SUCCESS(Status))
@@ -865,7 +859,6 @@
bLocked = TRUE;
}
- CHECKPOINT;
// Initialize
if (!ext2_initialize_sb(&FileSys))
@@ -874,7 +867,6 @@
goto clean_up;
}
- CHECKPOINT;
zap_sector(&FileSys, 2, 6);
@@ -999,13 +991,9 @@
}
}
- CHECKPOINT;
Ext2CloseDevice(&FileSys);
- CHECKPOINT;
-
- CHECKPOINT;
+
Callback(DONE, 0, (PVOID)&bRet);
- CHECKPOINT;
return Status;
}
Modified: trunk/reactos/lib/rtl/dos8dot3.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/rtl/dos8dot3.c?rev=356…
==============================================================================
--- trunk/reactos/lib/rtl/dos8dot3.c [iso-8859-1] (original)
+++ trunk/reactos/lib/rtl/dos8dot3.c [iso-8859-1] Mon Aug 25 13:52:38 2008
@@ -162,7 +162,6 @@
(Checksum == Context->Checksum) &&
(Context->LastIndexValue < 999))
{
- CHECKPOINT;
Context->LastIndexValue++;
if (Context->CheckSumInserted == FALSE &&
Context->LastIndexValue > 9)
@@ -174,7 +173,6 @@
}
else
{
- CHECKPOINT;
Context->LastIndexValue = 1;
Context->CheckSumInserted = FALSE;
}
Modified: trunk/reactos/ntoskrnl/ex/shutdown.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ex/shutdown.c?rev…
==============================================================================
--- trunk/reactos/ntoskrnl/ex/shutdown.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ex/shutdown.c [iso-8859-1] Mon Aug 25 13:52:38 2008
@@ -197,7 +197,7 @@
#endif /* CONFIG_SMP */
PopSetSystemPowerState(PowerSystemShutdown);
- CHECKPOINT1;
+ DPRINT1("Shutting down\n");
KiHaltProcessorDpcRoutine(NULL, NULL, NULL, NULL);
/* KiHaltProcessor does never return */
Modified: trunk/reactos/ntoskrnl/io/iomgr/bootlog.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/io/iomgr/bootlog.…
==============================================================================
--- trunk/reactos/ntoskrnl/io/iomgr/bootlog.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/io/iomgr/bootlog.c [iso-8859-1] Mon Aug 25 13:52:38 2008
@@ -337,7 +337,6 @@
BufferSize);
if (KeyInfo == NULL)
{
- CHECKPOINT1;
ExReleaseResourceLite(&IopBootLogResource);
return;
}
@@ -354,7 +353,6 @@
&ObjectAttributes);
if (!NT_SUCCESS(Status))
{
- CHECKPOINT1;
ExFreePool(KeyInfo);
ExReleaseResourceLite(&IopBootLogResource);
return;
@@ -381,7 +379,6 @@
if (!NT_SUCCESS(Status))
{
- CHECKPOINT1;
ZwClose(KeyHandle);
ExFreePool(KeyInfo);
ExReleaseResourceLite(&IopBootLogResource);
@@ -391,7 +388,6 @@
Status = IopWriteLogFile((PWSTR)&KeyInfo->Data);
if (!NT_SUCCESS(Status))
{
- CHECKPOINT1;
ZwClose(KeyHandle);
ExFreePool(KeyInfo);
ExReleaseResourceLite(&IopBootLogResource);
Modified: trunk/reactos/ntoskrnl/mm/balance.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/mm/balance.c?rev=…
==============================================================================
--- trunk/reactos/ntoskrnl/mm/balance.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/mm/balance.c [iso-8859-1] Mon Aug 25 13:52:38 2008
@@ -316,7 +316,6 @@
if (Status == STATUS_SUCCESS)
{
/* MiBalancerEvent */
- CHECKPOINT;
while (MmStats.NrFreePages < MiMinimumAvailablePages + 5)
{
for (i = 0; i < MC_MAXIMUM; i++)
@@ -333,7 +332,6 @@
}
}
InterlockedExchange(&MiBalancerWork, 0);
- CHECKPOINT;
}
else if (Status == STATUS_SUCCESS + 1)
{
@@ -387,7 +385,6 @@
;
#endif
- CHECKPOINT;
KeInitializeEvent(&MiBalancerEvent, SynchronizationEvent, FALSE);
KeInitializeTimerEx(&MiBalancerTimer, SynchronizationTimer);
Modified: trunk/reactos/ntoskrnl/mm/marea.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/mm/marea.c?rev=35…
==============================================================================
--- trunk/reactos/ntoskrnl/mm/marea.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/mm/marea.c [iso-8859-1] Mon Aug 25 13:52:38 2008
@@ -978,14 +978,12 @@
if (!MmGetAddressSpaceOwner(AddressSpace) && *BaseAddress <
MmSystemRangeStart)
{
- CHECKPOINT;
return STATUS_ACCESS_VIOLATION;
}
if (MmGetAddressSpaceOwner(AddressSpace) &&
(ULONG_PTR)(*BaseAddress) + tmpLength > (ULONG_PTR)MmSystemRangeStart)
{
- CHECKPOINT;
return STATUS_ACCESS_VIOLATION;
}
Modified: trunk/reactos/ntoskrnl/mm/section.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/mm/section.c?rev=…
==============================================================================
--- trunk/reactos/ntoskrnl/mm/section.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/mm/section.c [iso-8859-1] Mon Aug 25 13:52:38 2008
@@ -2036,7 +2036,6 @@
if ((MemoryArea->Flags & SEC_NO_CHANGE) &&
Region->Protect != Protect)
{
- CHECKPOINT1;
return STATUS_INVALID_PAGE_PROTECTION;
}
@@ -3686,7 +3685,6 @@
*/
if (Protect & ~PAGE_FLAGS_VALID_FROM_USER_MODE)
{
- CHECKPOINT1;
return STATUS_INVALID_PARAMETER_10;
}
@@ -3700,7 +3698,6 @@
tmpProtect != PAGE_EXECUTE_READWRITE &&
tmpProtect != PAGE_EXECUTE_WRITECOPY)
{
- CHECKPOINT1;
return STATUS_INVALID_PAGE_PROTECTION;
}
@@ -4508,7 +4505,6 @@
Protect != PAGE_EXECUTE_READWRITE &&
Protect != PAGE_EXECUTE_WRITECOPY)
{
- CHECKPOINT1;
return STATUS_INVALID_PAGE_PROTECTION;
}
@@ -4605,21 +4601,18 @@
if ((Protect & (PAGE_READWRITE|PAGE_EXECUTE_READWRITE)) &&
!(Section->SectionPageProtection &
(PAGE_READWRITE|PAGE_EXECUTE_READWRITE)))
{
- CHECKPOINT1;
return STATUS_SECTION_PROTECTION;
}
/* check for read access */
if ((Protect &
(PAGE_READONLY|PAGE_WRITECOPY|PAGE_EXECUTE_READ|PAGE_EXECUTE_WRITECOPY)) &&
!(Section->SectionPageProtection &
(PAGE_READONLY|PAGE_READWRITE|PAGE_WRITECOPY|PAGE_EXECUTE_READ|PAGE_EXECUTE_READWRITE|PAGE_EXECUTE_WRITECOPY)))
{
- CHECKPOINT1;
return STATUS_SECTION_PROTECTION;
}
/* check for execute access */
if ((Protect &
(PAGE_EXECUTE|PAGE_EXECUTE_READ|PAGE_EXECUTE_READWRITE|PAGE_EXECUTE_WRITECOPY))
&&
!(Section->SectionPageProtection &
(PAGE_EXECUTE|PAGE_EXECUTE_READ|PAGE_EXECUTE_READWRITE|PAGE_EXECUTE_WRITECOPY)))
{
- CHECKPOINT1;
return STATUS_SECTION_PROTECTION;
}
@@ -4925,7 +4918,6 @@
Protection != PAGE_EXECUTE_READWRITE &&
Protection != PAGE_EXECUTE_WRITECOPY)
{
- CHECKPOINT1;
return STATUS_INVALID_PAGE_PROTECTION;
}
Modified: trunk/reactos/subsystems/win32/csrss/win32csr/conio.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/csrss/win…
==============================================================================
--- trunk/reactos/subsystems/win32/csrss/win32csr/conio.c [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/csrss/win32csr/conio.c [iso-8859-1] Mon Aug 25 13:52:38
2008
@@ -574,7 +574,6 @@
CurrentEntry = RemoveHeadList(&Console->InputEvents);
if (IsListEmpty(&Console->InputEvents))
{
- CHECKPOINT;
ResetEvent(Console->ActiveEvent);
}
Input = CONTAINING_RECORD(CurrentEntry, ConsoleInput, ListEntry);
Modified: trunk/reactos/subsystems/win32/csrss/win32csr/tuiconsole.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/csrss/win…
==============================================================================
--- trunk/reactos/subsystems/win32/csrss/win32csr/tuiconsole.c [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/csrss/win32csr/tuiconsole.c [iso-8859-1] Mon Aug 25
13:52:38 2008
@@ -23,10 +23,8 @@
{
if (msg == WM_ACTIVATE)
{
- CHECKPOINT1;
if (LOWORD(wParam) != WA_INACTIVE)
{
- CHECKPOINT1;
SetFocus(hWnd);
ConioDrawConsole(ActiveConsole);
}
Modified: trunk/reactos/subsystems/win32/win32k/ntuser/focus.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/nt…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/ntuser/focus.c [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/ntuser/focus.c [iso-8859-1] Mon Aug 25 13:52:38
2008
@@ -136,7 +136,6 @@
/* FIXME: IntIsWindow */
- CHECKPOINT;
co_IntPostOrSendMessage(hWnd, WM_NCACTIVATE, (WPARAM)(hWnd ==
UserGetForegroundWindow()), 0);
/* FIXME: WA_CLICKACTIVE */
co_IntPostOrSendMessage(hWnd, WM_ACTIVATE,
@@ -251,7 +250,6 @@
/* FIXME: Send WM_ACTIVATEAPP to all thread windows. */
}
- CHECKPOINT;
co_IntSendSetFocusMessages(hWndFocusPrev, hWndFocus);
co_IntSendActivateMessages(hWndPrev, hWnd, MouseActivate);