Removed or changed debug prints printed at boot.

svn path=/trunk/; revision=2610
This commit is contained in:
Casper Hornstrup 2002-02-08 02:57:10 +00:00
parent 565837d1f1
commit 1cc5bd55b6
37 changed files with 103 additions and 145 deletions

View file

@ -13,7 +13,7 @@ KDBG := 0
# #
# Whether to compile for debugging # Whether to compile for debugging
# #
DBG := 1 DBG := 0
# #
# Whether to compile a multiprocessor or single processor version # Whether to compile a multiprocessor or single processor version

View file

@ -1,4 +1,4 @@
/* $Id: blue.c,v 1.31 2001/08/27 01:25:37 ekohl Exp $ /* $Id: blue.c,v 1.32 2002/02/08 02:57:07 chorns Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -610,7 +610,7 @@ DriverEntry (PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath)
UNICODE_STRING DeviceName; UNICODE_STRING DeviceName;
UNICODE_STRING SymlinkName; UNICODE_STRING SymlinkName;
DbgPrint ("Screen Driver 0.0.6\n"); DPRINT ("Screen Driver 0.0.6\n");
DriverObject->MajorFunction[IRP_MJ_CREATE] = ScrCreate; DriverObject->MajorFunction[IRP_MJ_CREATE] = ScrCreate;
DriverObject->MajorFunction[IRP_MJ_CLOSE] = ScrDispatch; DriverObject->MajorFunction[IRP_MJ_CLOSE] = ScrDispatch;

View file

@ -243,7 +243,7 @@ FloppyCreateController(PDRIVER_OBJECT DriverObject,
RtlInitUnicodeString( &arcname, L"\\ArcName\\multi(0)disk(0)fdisk(0)" ); RtlInitUnicodeString( &arcname, L"\\ArcName\\multi(0)disk(0)fdisk(0)" );
Status = IoAssignArcName( &arcname, &DeviceName ); Status = IoAssignArcName( &arcname, &DeviceName );
DbgPrint( "Floppy drive initialized\n" ); DPRINT( "Floppy drive initialized\n" );
return TRUE; return TRUE;
devicecleanup: devicecleanup:
@ -499,7 +499,7 @@ NTSTATUS STDCALL
DriverEntry(IN PDRIVER_OBJECT DriverObject, DriverEntry(IN PDRIVER_OBJECT DriverObject,
IN PUNICODE_STRING RegistryPath) IN PUNICODE_STRING RegistryPath)
{ {
DbgPrint("Floppy driver\n"); DPRINT("Floppy driver\n");
/* Export other driver entry points... */ /* Export other driver entry points... */
DriverObject->MajorFunction[IRP_MJ_CREATE] = FloppyDispatchOpenClose; DriverObject->MajorFunction[IRP_MJ_CREATE] = FloppyDispatchOpenClose;

View file

@ -1,4 +1,4 @@
/* $Id: ide.c,v 1.50 2002/01/24 10:04:50 ekohl Exp $ /* $Id: ide.c,v 1.51 2002/02/08 02:57:08 chorns Exp $
* *
* IDE.C - IDE Disk driver * IDE.C - IDE Disk driver
* written by Rex Jolliff * written by Rex Jolliff
@ -241,7 +241,7 @@ DriverEntry(IN PDRIVER_OBJECT DriverObject,
{ {
NTSTATUS Status; NTSTATUS Status;
DbgPrint("IDE Driver %s\n", VERSION); DPRINT("IDE Driver %s\n", VERSION);
/* Export other driver entry points... */ /* Export other driver entry points... */
DriverObject->DriverStartIo = IDEStartIo; DriverObject->DriverStartIo = IDEStartIo;
@ -674,13 +674,13 @@ IDECreateDevices(IN PDRIVER_OBJECT DriverObject,
/* Get the Drive Identification Data */ /* Get the Drive Identification Data */
if (!IDEGetDriveIdentification(CommandPort, DriveIdx, &DrvParms)) if (!IDEGetDriveIdentification(CommandPort, DriveIdx, &DrvParms))
{ {
DbgPrint("No ATA drive %d found on controller %d...\n", DPRINT("No ATA drive %d found on controller %d...\n",
DriveIdx, DriveIdx,
ControllerExtension->Number); ControllerExtension->Number);
return(FALSE); return(FALSE);
} }
DbgPrint("Found ATA drive %d on controller %d...\n", DPRINT("Found ATA drive %d on controller %d...\n",
DriveIdx, DriveIdx,
ControllerExtension->Number); ControllerExtension->Number);
@ -745,7 +745,7 @@ IDECreateDevices(IN PDRIVER_OBJECT DriverObject,
ControllerExtension); ControllerExtension);
} }
DPRINT1("DrvParms.BytesPerSector %ld\n",DrvParms.BytesPerSector); DPRINT("DrvParms.BytesPerSector %ld\n",DrvParms.BytesPerSector);
/* Read partition table */ /* Read partition table */
Status = IoReadPartitionTable(DiskDeviceObject, Status = IoReadPartitionTable(DiskDeviceObject,
@ -1072,7 +1072,7 @@ IDECreatePartitionDevice(IN PDRIVER_OBJECT DriverObject,
/* Initialize the DPC object here */ /* Initialize the DPC object here */
IoInitializeDpcRequest(*DeviceObject, IDEDpcForIsr); IoInitializeDpcRequest(*DeviceObject, IDEDpcForIsr);
DbgPrint("%wZ %luMB\n", &DeviceName, DeviceExtension->Size / 2048); DPRINT("%wZ %luMB\n", &DeviceName, DeviceExtension->Size / 2048);
/* assign arc name */ /* assign arc name */
swprintf(ArcNameBuffer, swprintf(ArcNameBuffer,
@ -1206,7 +1206,7 @@ IDEPolledRead(IN WORD Address,
{ {
if (Status & IDE_SR_ERR) if (Status & IDE_SR_ERR)
{ {
DPRINT1("IDE_SR_ERR asserted!\n"); DPRINT("IDE_SR_ERR asserted!\n");
} }
if ((Status & IDE_SR_DRQ) && !(Status & IDE_SR_ERR)) if ((Status & IDE_SR_DRQ) && !(Status & IDE_SR_ERR))
{ {
@ -1247,7 +1247,7 @@ IDEPolledRead(IN WORD Address,
{ {
if (Status & IDE_SR_ERR) if (Status & IDE_SR_ERR)
{ {
DPRINT1("IDE_SR_ERR asserted!\n"); DPRINT("IDE_SR_ERR asserted!\n");
} }
if (Status & IDE_SR_DRQ) if (Status & IDE_SR_DRQ)
{ {
@ -1432,7 +1432,7 @@ IDEDispatchDeviceControl(IN PDEVICE_OBJECT DeviceObject,
DiskDeviceExtension->SectorsPerLogTrk; DiskDeviceExtension->SectorsPerLogTrk;
Geometry->SectorsPerTrack = DiskDeviceExtension->SectorsPerLogTrk; Geometry->SectorsPerTrack = DiskDeviceExtension->SectorsPerLogTrk;
Geometry->BytesPerSector = DiskDeviceExtension->BytesPerSector; Geometry->BytesPerSector = DiskDeviceExtension->BytesPerSector;
DPRINT1("DiskDeviceExtension->BytesPerSector %lu\n", DiskDeviceExtension->BytesPerSector); DPRINT("DiskDeviceExtension->BytesPerSector %lu\n", DiskDeviceExtension->BytesPerSector);
Irp->IoStatus.Status = STATUS_SUCCESS; Irp->IoStatus.Status = STATUS_SUCCESS;
Irp->IoStatus.Information = sizeof(DISK_GEOMETRY); Irp->IoStatus.Information = sizeof(DISK_GEOMETRY);
} }

View file

@ -1,4 +1,4 @@
/* $Id: null.c,v 1.5 2001/06/12 12:36:58 ekohl Exp $ /* $Id: null.c,v 1.6 2002/02/08 02:57:08 chorns Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -84,8 +84,6 @@ DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath)
UNICODE_STRING DeviceName; UNICODE_STRING DeviceName;
NTSTATUS Status; NTSTATUS Status;
DbgPrint("Null Device Driver 0.0.2\n");
DeviceObject->Flags=0; DeviceObject->Flags=0;
DriverObject->MajorFunction[IRP_MJ_CLOSE] = NullDispatch; DriverObject->MajorFunction[IRP_MJ_CLOSE] = NullDispatch;
DriverObject->MajorFunction[IRP_MJ_CREATE] = NullDispatch; DriverObject->MajorFunction[IRP_MJ_CREATE] = NullDispatch;

View file

@ -1,4 +1,4 @@
/* $Id: parallel.c,v 1.6 2000/10/22 02:02:28 ekohl Exp $ /* $Id: parallel.c,v 1.7 2002/02/08 02:57:08 chorns Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -130,7 +130,7 @@ DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath)
UNICODE_STRING DeviceName; UNICODE_STRING DeviceName;
NTSTATUS Status; NTSTATUS Status;
DbgPrint("Parallel Port Driver 0.0.1\n"); DPRINT("Parallel Port Driver 0.0.1\n");
RtlInitUnicodeString (&DeviceName, RtlInitUnicodeString (&DeviceName,
L"\\Device\\Parallel"); L"\\Device\\Parallel");

View file

@ -57,7 +57,7 @@ NTSTATUS STDCALL DriverEntry(IN PDRIVER_OBJECT DriverObject,
FILE_STANDARD_INFORMATION finfo; FILE_STANDARD_INFORMATION finfo;
DWORD err; DWORD err;
DbgPrint("Ramdisk driver\n"); DPRINT("Ramdisk driver\n");
/* Export other driver entry points... */ /* Export other driver entry points... */
DriverObject->MajorFunction[IRP_MJ_CREATE] = RamdrvDispatchOpenClose; DriverObject->MajorFunction[IRP_MJ_CREATE] = RamdrvDispatchOpenClose;
@ -170,7 +170,7 @@ NTSTATUS STDCALL DriverEntry(IN PDRIVER_OBJECT DriverObject,
DPRINT( "Failed to read floppy\n" ); DPRINT( "Failed to read floppy\n" );
goto cleantbuff; goto cleantbuff;
} }
DbgPrint( "RAMDRV: Read in %d bytes, decompressing now\n", iosb.Information ); DPRINT( "RAMDRV: Read in %d bytes, decompressing now\n", iosb.Information );
err = BZ2_bzBuffToBuffDecompress( devext->Buffer, err = BZ2_bzBuffToBuffDecompress( devext->Buffer,
&dstlen, &dstlen,
tbuff, tbuff,
@ -178,7 +178,7 @@ NTSTATUS STDCALL DriverEntry(IN PDRIVER_OBJECT DriverObject,
1, 1,
0 ); 0 );
if( err == 0 ) if( err == 0 )
DbgPrint( "RAMDRV: Image Decompressed\n"); DPRINT( "RAMDRV: Image Decompressed\n");
else DbgPrint( "RAMDRV: Failed to decomparess image, error: %d\n", err ); else DbgPrint( "RAMDRV: Failed to decomparess image, error: %d\n", err );
ExFreePool( tbuff ); ExFreePool( tbuff );
NtClose( file ); NtClose( file );

View file

@ -1,9 +1,9 @@
/* /*
* entry.c * entry.c
* *
* $Revision: 1.16 $ * $Revision: 1.17 $
* $Author: chorns $ * $Author: chorns $
* $Date: 2001/09/23 22:14:10 $ * $Date: 2002/02/08 02:57:09 $
* *
*/ */
@ -185,9 +185,9 @@ DHPDEV VGADDIEnablePDEV(IN DEVMODEW *DM,
// FIXME: full out DevInfo // FIXME: full out DevInfo
devinfoVGA.hpalDefault = EngCreatePalette(PAL_INDEXED, 16, (PULONG)(VGApalette.PaletteEntry), 0, 0, 0); devinfoVGA.hpalDefault = EngCreatePalette(PAL_INDEXED, 16, (PULONG)(VGApalette.PaletteEntry), 0, 0, 0);
DbgPrint("Palette from Driver: %u\n", devinfoVGA.hpalDefault); DPRINT("Palette from Driver: %u\n", devinfoVGA.hpalDefault);
*DI = devinfoVGA; *DI = devinfoVGA;
DbgPrint("Palette from Driver 2: %u and DI is %08x\n", DI->hpalDefault, DI); DPRINT("Palette from Driver 2: %u and DI is %08x\n", DI->hpalDefault, DI);
return PDev; return PDev;
} }

View file

@ -73,8 +73,6 @@ DriverEntry(IN PVOID Context1,
IN PVOID Context2) IN PVOID Context2)
{ {
VIDEO_HW_INITIALIZATION_DATA InitData; VIDEO_HW_INITIALIZATION_DATA InitData;
DbgPrint("VGA miniport Driver %s\n", VERSION);
VideoPortZeroMemory(&InitData, sizeof InitData); VideoPortZeroMemory(&InitData, sizeof InitData);

View file

@ -1,4 +1,4 @@
/* $Id: vidport.c,v 1.20 2001/06/26 12:51:00 ekohl Exp $ /* $Id: vidport.c,v 1.21 2002/02/08 02:57:09 chorns Exp $
* *
* VideoPort driver * VideoPort driver
* Written by Rex Jolliff * Written by Rex Jolliff
@ -50,7 +50,6 @@ STDCALL NTSTATUS
DriverEntry(IN PDRIVER_OBJECT DriverObject, DriverEntry(IN PDRIVER_OBJECT DriverObject,
IN PUNICODE_STRING RegistryPath) IN PUNICODE_STRING RegistryPath)
{ {
DbgPrint("VideoPort Driver %s\n", VERSION);
return STATUS_SUCCESS; return STATUS_SUCCESS;
} }
@ -293,7 +292,7 @@ VideoPortInitialize(IN PVOID Context1,
DeviceNumber++; DeviceNumber++;
} }
while (Again); while (Again);
#if 0
/* Find a process handle for csrss */ /* Find a process handle for csrss */
Cid.UniqueProcess = (HANDLE)3; Cid.UniqueProcess = (HANDLE)3;
Cid.UniqueThread = 0; Cid.UniqueThread = 0;
@ -320,7 +319,9 @@ VideoPortInitialize(IN PVOID Context1,
Csrss = NULL; Csrss = NULL;
} }
} }
#else
Csrss = NULL;
#endif
/* FIXME: initialize timer routine for MP Driver */ /* FIXME: initialize timer routine for MP Driver */
if (HwInitializationData->HwTimer != NULL) if (HwInitializationData->HwTimer != NULL)
{ {
@ -792,8 +793,6 @@ VidDispatchDeviceControl(IN PDEVICE_OBJECT DeviceObject,
{ {
PVIDEO_REQUEST_PACKET vrp; PVIDEO_REQUEST_PACKET vrp;
DbgPrint("IO Control code: %u\n", Irp->Stack[0].Parameters.DeviceIoControl.IoControlCode);
// Translate the IRP to a VRP // Translate the IRP to a VRP
vrp = ExAllocatePool(PagedPool, sizeof(VIDEO_REQUEST_PACKET)); vrp = ExAllocatePool(PagedPool, sizeof(VIDEO_REQUEST_PACKET));
vrp->StatusBlock = ExAllocatePool(PagedPool, sizeof(STATUS_BLOCK)); vrp->StatusBlock = ExAllocatePool(PagedPool, sizeof(STATUS_BLOCK));

View file

@ -1,4 +1,4 @@
/* $Id: create.c,v 1.37 2002/02/05 21:32:30 hbirr Exp $ /* $Id: create.c,v 1.38 2002/02/08 02:57:09 chorns Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -475,7 +475,7 @@ vfatMakeAbsoluteFilename (PFILE_OBJECT pFileObject,
PVFATFCB fcb; PVFATFCB fcb;
PVFATCCB ccb; PVFATCCB ccb;
DbgPrint ("try related for %S\n", pRelativeFileName); DPRINT ("try related for %S\n", pRelativeFileName);
ccb = pFileObject->FsContext2; ccb = pFileObject->FsContext2;
assert (ccb); assert (ccb);
fcb = ccb->pFcb; fcb = ccb->pFcb;
@ -798,7 +798,7 @@ NTSTATUS VfatCreate (PVFAT_IRP_CONTEXT IrpContext)
if (IrpContext->DeviceObject->Size == sizeof (DEVICE_OBJECT)) if (IrpContext->DeviceObject->Size == sizeof (DEVICE_OBJECT))
{ {
/* DeviceObject represents FileSystem instead of logical volume */ /* DeviceObject represents FileSystem instead of logical volume */
DbgPrint ("FsdCreate called with file system\n"); DPRINT ("FsdCreate called with file system\n");
IrpContext->Irp->IoStatus.Information = FILE_OPENED; IrpContext->Irp->IoStatus.Information = FILE_OPENED;
Status = STATUS_SUCCESS; Status = STATUS_SUCCESS;
goto ByeBye; goto ByeBye;

View file

@ -1,4 +1,4 @@
/* $Id: iface.c,v 1.60 2001/11/07 02:21:19 phreak Exp $ /* $Id: iface.c,v 1.61 2002/02/08 02:57:09 chorns Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -61,7 +61,7 @@ VfatHasFileSystem(PDEVICE_OBJECT DeviceToMount,
return(Status); return(Status);
} }
DPRINT1("Boot->SysType %.5s\n", Boot->SysType); DPRINT("Boot->SysType %.5s\n", Boot->SysType);
if (strncmp(Boot->SysType, "FAT12", 5) == 0 || if (strncmp(Boot->SysType, "FAT12", 5) == 0 ||
strncmp(Boot->SysType, "FAT16", 5) == 0 || strncmp(Boot->SysType, "FAT16", 5) == 0 ||
strncmp(((struct _BootSector32 *) (Boot))->SysType, "FAT32", 5) == 0) strncmp(((struct _BootSector32 *) (Boot))->SysType, "FAT32", 5) == 0)
@ -127,14 +127,14 @@ VfatMountDevice(PDEVICE_EXTENSION DeviceExt,
if (strncmp (DeviceExt->Boot->SysType, "FAT12", 5) == 0) if (strncmp (DeviceExt->Boot->SysType, "FAT12", 5) == 0)
{ {
DbgPrint("FAT12\n"); DPRINT("FAT12\n");
DeviceExt->FatType = FAT12; DeviceExt->FatType = FAT12;
} }
else if (strncmp else if (strncmp
(((struct _BootSector32 *) (DeviceExt->Boot))->SysType, "FAT32", (((struct _BootSector32 *) (DeviceExt->Boot))->SysType, "FAT32",
5) == 0) 5) == 0)
{ {
DbgPrint("FAT32\n"); DPRINT("FAT32\n");
DeviceExt->FatType = FAT32; DeviceExt->FatType = FAT32;
DeviceExt->rootDirectorySectors = DeviceExt->Boot->SectorsPerCluster; DeviceExt->rootDirectorySectors = DeviceExt->Boot->SectorsPerCluster;
DeviceExt->dataStart = DeviceExt->FATStart + DeviceExt->Boot->FATCount DeviceExt->dataStart = DeviceExt->FATStart + DeviceExt->Boot->FATCount
@ -144,7 +144,7 @@ VfatMountDevice(PDEVICE_EXTENSION DeviceExt,
} }
else else
{ {
DbgPrint("FAT16\n"); DPRINT("FAT16\n");
DeviceExt->FatType = FAT16; DeviceExt->FatType = FAT16;
} }
@ -165,7 +165,7 @@ VfatMount (PVFAT_IRP_CONTEXT IrpContext)
PVFATFCB Fcb = NULL; PVFATFCB Fcb = NULL;
PVFATCCB Ccb = NULL; PVFATCCB Ccb = NULL;
DPRINT1("VfatMount(IrpContext %x)\n", IrpContext); DPRINT("VfatMount(IrpContext %x)\n", IrpContext);
assert (IrpContext); assert (IrpContext);
@ -209,7 +209,7 @@ VfatMount (PVFAT_IRP_CONTEXT IrpContext)
goto ByeBye; goto ByeBye;
} }
#if 1 #ifdef DBG
DbgPrint("BytesPerSector: %d\n", DeviceExt->Boot->BytesPerSector); DbgPrint("BytesPerSector: %d\n", DeviceExt->Boot->BytesPerSector);
DbgPrint("SectorsPerCluster: %d\n", DeviceExt->Boot->SectorsPerCluster); DbgPrint("SectorsPerCluster: %d\n", DeviceExt->Boot->SectorsPerCluster);
DbgPrint("ReservedSectors: %d\n", DeviceExt->Boot->ReservedSectors); DbgPrint("ReservedSectors: %d\n", DeviceExt->Boot->ReservedSectors);
@ -348,14 +348,14 @@ NTSTATUS VfatFileSystemControl(PVFAT_IRP_CONTEXT IrpContext)
NTSTATUS Status; NTSTATUS Status;
DPRINT1("VfatFileSystemControl(IrpContext %x)\n", IrpContext); DPRINT("VfatFileSystemControl(IrpContext %x)\n", IrpContext);
assert (IrpContext); assert (IrpContext);
switch (IrpContext->MinorFunction) switch (IrpContext->MinorFunction)
{ {
case IRP_MN_USER_FS_REQUEST: case IRP_MN_USER_FS_REQUEST:
DPRINT1("VFAT FSC: IRP_MN_USER_FS_REQUEST\n"); DPRINT("VFAT FSC: IRP_MN_USER_FS_REQUEST\n");
Status = STATUS_INVALID_DEVICE_REQUEST; Status = STATUS_INVALID_DEVICE_REQUEST;
break; break;
@ -364,12 +364,12 @@ NTSTATUS VfatFileSystemControl(PVFAT_IRP_CONTEXT IrpContext)
break; break;
case IRP_MN_VERIFY_VOLUME: case IRP_MN_VERIFY_VOLUME:
DPRINT1("VFAT FSC: IRP_MN_VERIFY_VOLUME\n"); DPRINT("VFAT FSC: IRP_MN_VERIFY_VOLUME\n");
Status = STATUS_INVALID_DEVICE_REQUEST; Status = STATUS_INVALID_DEVICE_REQUEST;
break; break;
default: default:
DPRINT1("VFAT FSC: MinorFunction %d\n", IrpContext->MinorFunction); DPRINT("VFAT FSC: MinorFunction %d\n", IrpContext->MinorFunction);
Status = STATUS_INVALID_DEVICE_REQUEST; Status = STATUS_INVALID_DEVICE_REQUEST;
break; break;
} }
@ -397,7 +397,7 @@ DriverEntry(PDRIVER_OBJECT _DriverObject,
UNICODE_STRING DeviceName; UNICODE_STRING DeviceName;
NTSTATUS Status; NTSTATUS Status;
DbgPrint("VFAT 0.0.6\n"); DPRINT("VFAT 0.0.6\n");
VfatDriverObject = _DriverObject; VfatDriverObject = _DriverObject;

View file

@ -834,7 +834,7 @@ NTSTATUS STDCALL DriverEntry(PDRIVER_OBJECT DriverObject,
UNICODE_STRING DeviceName; UNICODE_STRING DeviceName;
UNICODE_STRING SymlinkName; UNICODE_STRING SymlinkName;
DbgPrint("Keyboard Driver 0.0.4\n"); DPRINT("Keyboard Driver 0.0.4\n");
DriverObject->MajorFunction[IRP_MJ_CREATE] = KbdDispatch; DriverObject->MajorFunction[IRP_MJ_CREATE] = KbdDispatch;
DriverObject->MajorFunction[IRP_MJ_CLOSE] = KbdDispatch; DriverObject->MajorFunction[IRP_MJ_CLOSE] = KbdDispatch;

View file

@ -266,8 +266,6 @@ DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath)
UNICODE_STRING DeviceName; UNICODE_STRING DeviceName;
UNICODE_STRING SymlinkName; UNICODE_STRING SymlinkName;
DbgPrint("Mouse Class Driver 0.0.1\n");
DriverObject->MajorFunction[IRP_MJ_CREATE] = MouseClassDispatch; DriverObject->MajorFunction[IRP_MJ_CREATE] = MouseClassDispatch;
// DriverObject->MajorFunction[IRP_MJ_CLOSE] = MouseClassDispatch; // DriverObject->MajorFunction[IRP_MJ_CLOSE] = MouseClassDispatch;
// DriverObject->MajorFunction[IRP_MJ_READ] = MouseClassDispatch; // DriverObject->MajorFunction[IRP_MJ_READ] = MouseClassDispatch;

View file

@ -161,11 +161,8 @@ DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath)
UNICODE_STRING SymlinkName; UNICODE_STRING SymlinkName;
PDEVICE_EXTENSION DeviceExtension; PDEVICE_EXTENSION DeviceExtension;
DbgPrint("PS/2 Keyboard & Mouse Driver 0.0.2\n");
if(detect_ps2_port() == TRUE) if(detect_ps2_port() == TRUE)
{ {
DbgPrint("PS/2 Mouse Detected\n");
} else } else
return STATUS_UNSUCCESSFUL; return STATUS_UNSUCCESSFUL;

View file

@ -127,7 +127,6 @@ VOID AfdUnload(
* DriverObject = Pointer to driver object created by the system * DriverObject = Pointer to driver object created by the system
*/ */
{ {
DbgPrint("Unloading Ancillary Function Driver\n");
} }
@ -150,8 +149,6 @@ DriverEntry(
UNICODE_STRING DeviceName; UNICODE_STRING DeviceName;
NTSTATUS Status; NTSTATUS Status;
DbgPrint("Ancillary Function Driver\n");
RtlInitUnicodeString(&DeviceName, L"\\Device\\Afd"); RtlInitUnicodeString(&DeviceName, L"\\Device\\Afd");
Status = IoCreateDevice(DriverObject, Status = IoCreateDevice(DriverObject,
sizeof(DEVICE_EXTENSION), sizeof(DEVICE_EXTENSION),

View file

@ -1,4 +1,4 @@
/* $Id: startup.c,v 1.35 2002/01/27 03:25:44 dwelch Exp $ /* $Id: startup.c,v 1.36 2002/02/08 02:57:06 chorns Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -248,7 +248,6 @@ LdrInitializeThunk (ULONG Unknown1,
ZwTerminateProcess(NtCurrentProcess(),STATUS_UNSUCCESSFUL); ZwTerminateProcess(NtCurrentProcess(),STATUS_UNSUCCESSFUL);
} }
DbgPrint("Transferring control to image at %x\n",EntryPoint);
Status = EntryPoint(Peb); Status = EntryPoint(Peb);
ZwTerminateProcess(NtCurrentProcess(),Status); ZwTerminateProcess(NtCurrentProcess(),Status);
} }

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
/* $Id: view.c,v 1.36 2002/01/26 21:21:02 dwelch Exp $ /* $Id: view.c,v 1.37 2002/02/08 02:57:06 chorns Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -560,7 +560,7 @@ CcRosInitializeFileCache(PFILE_OBJECT FileObject,
VOID VOID
CcInitView(VOID) CcInitView(VOID)
{ {
DPRINT1("CcInitView()\n"); DPRINT("CcInitView()\n");
InitializeListHead(&CacheSegmentListHead); InitializeListHead(&CacheSegmentListHead);
InitializeListHead(&DirtySegmentListHead); InitializeListHead(&DirtySegmentListHead);
InitializeListHead(&CacheSegmentLRUListHead); InitializeListHead(&CacheSegmentLRUListHead);

View file

@ -1,4 +1,4 @@
/* $Id: kdebug.c,v 1.32 2002/02/02 20:13:08 ekohl Exp $ /* $Id: kdebug.c,v 1.33 2002/02/08 02:57:06 chorns Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -201,7 +201,7 @@ KdInitSystem(ULONG Reserved,
break; break;
case ScreenDebug: case ScreenDebug:
PrintString("\n Screen debugging enabled\n\n"); //PrintString("\n Screen debugging enabled\n\n");
break; break;
case BochsDebug: case BochsDebug:

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
/* $Id: main.c,v 1.112 2002/01/23 23:39:25 chorns Exp $ /* $Id: main.c,v 1.113 2002/02/08 02:57:06 chorns Exp $
* *
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* FILE: ntoskrnl/ke/main.c * FILE: ntoskrnl/ke/main.c
@ -445,7 +445,7 @@ CreateSystemRootLink (PCSZ ParameterLine)
swprintf (ArcNameBuffer, swprintf (ArcNameBuffer,
L"\\ArcName\\%S", ParamBuffer); L"\\ArcName\\%S", ParamBuffer);
RtlInitUnicodeString (&ArcName, ArcNameBuffer); RtlInitUnicodeString (&ArcName, ArcNameBuffer);
DPRINT1("Arc name: %wZ\n", &ArcName); DPRINT("Arc name: %wZ\n", &ArcName);
/* free ParamBuffer */ /* free ParamBuffer */
ExFreePool (ParamBuffer); ExFreePool (ParamBuffer);
@ -485,7 +485,7 @@ CreateSystemRootLink (PCSZ ParameterLine)
{ {
RtlFreeUnicodeString (&BootPath); RtlFreeUnicodeString (&BootPath);
RtlFreeUnicodeString (&DeviceName); RtlFreeUnicodeString (&DeviceName);
DbgPrint("NtQuerySymbolicObject() failed (Status %x)\n", CPRINT("NtQuerySymbolicObject() failed (Status %x)\n",
Status); Status);
KeBugCheck (0x0); KeBugCheck (0x0);
@ -507,7 +507,7 @@ CreateSystemRootLink (PCSZ ParameterLine)
RtlFreeUnicodeString (&DeviceName); RtlFreeUnicodeString (&DeviceName);
if (!NT_SUCCESS(Status)) if (!NT_SUCCESS(Status))
{ {
DbgPrint("IoCreateSymbolicLink() failed (Status %x)\n", CPRINT("IoCreateSymbolicLink() failed (Status %x)\n",
Status); Status);
KeBugCheck (0x0); KeBugCheck (0x0);
@ -525,7 +525,7 @@ CreateSystemRootLink (PCSZ ParameterLine)
&ObjectAttributes); &ObjectAttributes);
if (!NT_SUCCESS(Status)) if (!NT_SUCCESS(Status))
{ {
DbgPrint("NtOpenSymbolicLinkObject() failed to open '\\SystemRoot' (Status %x)\n", CPRINT("NtOpenSymbolicLinkObject() failed to open '\\SystemRoot' (Status %x)\n",
Status); Status);
KeBugCheck (0x0); KeBugCheck (0x0);
} }
@ -627,7 +627,7 @@ InitSystemSharedUserPage (PCSZ ParameterLine)
{ {
RtlFreeUnicodeString (&BootPath); RtlFreeUnicodeString (&BootPath);
RtlFreeUnicodeString (&ArcDeviceName); RtlFreeUnicodeString (&ArcDeviceName);
DbgPrint("NtOpenSymbolicLinkObject() failed (Status %x)\n", CPRINT("NtOpenSymbolicLinkObject() failed (Status %x)\n",
Status); Status);
KeBugCheck (0x0); KeBugCheck (0x0);
@ -641,7 +641,7 @@ InitSystemSharedUserPage (PCSZ ParameterLine)
{ {
RtlFreeUnicodeString (&BootPath); RtlFreeUnicodeString (&BootPath);
RtlFreeUnicodeString (&ArcDeviceName); RtlFreeUnicodeString (&ArcDeviceName);
DbgPrint("NtQuerySymbolicObject() failed (Status %x)\n", CPRINT("NtQuerySymbolicObject() failed (Status %x)\n",
Status); Status);
KeBugCheck (0x0); KeBugCheck (0x0);
@ -1040,7 +1040,7 @@ ExpInitializeExecutive(VOID)
/* /*
* Initalize services loaded at boot time * Initalize services loaded at boot time
*/ */
DPRINT1("%d files loaded\n",KeLoaderBlock.ModsCount); DPRINT("%d files loaded\n",KeLoaderBlock.ModsCount);
for (i=0; i < KeLoaderBlock.ModsCount; i++) for (i=0; i < KeLoaderBlock.ModsCount; i++)
{ {
CPRINT("Module: '%s' at %08lx, length 0x%08lx\n", CPRINT("Module: '%s' at %08lx, length 0x%08lx\n",

View file

@ -95,7 +95,7 @@ NTSTATUS LdrLoadInitialProcess (VOID)
FileHandle); FileHandle);
if (!NT_SUCCESS(Status)) if (!NT_SUCCESS(Status))
{ {
DbgPrint("ZwCreateSection failed (Status %x)\n", Status); DPRINT("ZwCreateSection failed (Status %x)\n", Status);
ZwClose(FileHandle); ZwClose(FileHandle);
return(Status); return(Status);
} }
@ -112,7 +112,7 @@ NTSTATUS LdrLoadInitialProcess (VOID)
NULL); NULL);
if (!NT_SUCCESS(Status)) if (!NT_SUCCESS(Status))
{ {
DbgPrint("Could not create process\n"); DPRINT("Could not create process\n");
return Status; return Status;
} }
@ -140,7 +140,7 @@ NTSTATUS LdrLoadInitialProcess (VOID)
NULL); NULL);
if (!NT_SUCCESS(Status)) if (!NT_SUCCESS(Status))
{ {
DbgPrint("ObReferenceObjectByProcess() failed (Status %x)\n", Status); DPRINT("ObReferenceObjectByProcess() failed (Status %x)\n", Status);
return(Status); return(Status);
} }

View file

@ -1,4 +1,4 @@
/* $Id: rtl.c,v 1.12 2001/02/10 22:51:09 dwelch Exp $ /* $Id: rtl.c,v 1.13 2002/02/08 02:57:07 chorns Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -212,7 +212,7 @@ LdrGetProcedureAddress (IN PVOID BaseAddress,
return STATUS_SUCCESS; return STATUS_SUCCESS;
} }
} }
DbgPrint("LdrGetProcedureAddress: Can't resolve symbol '%Z'\n", Name); CPRINT("LdrGetProcedureAddress: Can't resolve symbol '%Z'\n", Name);
} }
else else
{ {
@ -225,7 +225,7 @@ LdrGetProcedureAddress (IN PVOID BaseAddress,
(ULONG)AddressPtr[Ordinal - ExportDir->Base]); (ULONG)AddressPtr[Ordinal - ExportDir->Base]);
return STATUS_SUCCESS; return STATUS_SUCCESS;
} }
DbgPrint("LdrGetProcedureAddress: Can't resolve symbol @%d\n", CPRINT("LdrGetProcedureAddress: Can't resolve symbol @%d\n",
Ordinal); Ordinal);
} }

View file

@ -59,7 +59,7 @@ NTSTATUS LdrpMapImage(HANDLE ProcessHandle,
PAGE_READWRITE); PAGE_READWRITE);
if (!NT_SUCCESS(Status)) if (!NT_SUCCESS(Status))
{ {
DbgPrint("Image map view of section failed (Status %x)", Status); CPRINT("Image map view of section failed (Status %x)", Status);
return(Status); return(Status);
} }

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
/* $Id: pagefile.c,v 1.16 2002/01/27 03:25:44 dwelch Exp $ /* $Id: pagefile.c,v 1.17 2002/02/08 02:57:07 chorns Exp $
* *
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
* FILE: ntoskrnl/mm/pagefile.c * FILE: ntoskrnl/mm/pagefile.c
@ -33,6 +33,7 @@
#include <internal/mm.h> #include <internal/mm.h>
#include <napi/core.h> #include <napi/core.h>
#define NDEBUG
#include <internal/debug.h> #include <internal/debug.h>
/* TYPES *********************************************************************/ /* TYPES *********************************************************************/
@ -376,7 +377,7 @@ NtCreatePagingFile(IN PUNICODE_STRING PageFileName,
PVOID Buffer; PVOID Buffer;
LARGE_INTEGER ByteOffset; LARGE_INTEGER ByteOffset;
DPRINT1("NtCreatePagingFile(PageFileName %wZ, MinimumSize %d)\n", DPRINT("NtCreatePagingFile(PageFileName %wZ, MinimumSize %d)\n",
PageFileName, MinimumSize); PageFileName, MinimumSize);
InitializeObjectAttributes(&ObjectAttributes, InitializeObjectAttributes(&ObjectAttributes,

View file

@ -1,4 +1,4 @@
/* $Id: object.c,v 1.40 2001/08/30 20:38:20 dwelch Exp $ /* $Id: object.c,v 1.41 2002/02/08 02:57:07 chorns Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -394,13 +394,13 @@ NTSTATUS ObPerformRetentionChecks(POBJECT_HEADER Header)
if (Header->RefCount < 0) if (Header->RefCount < 0)
{ {
DbgPrint("Object %x/%x has invalid reference count (%d)\n", CPRINT("Object %x/%x has invalid reference count (%d)\n",
Header, HEADER_TO_BODY(Header), Header->RefCount); Header, HEADER_TO_BODY(Header), Header->RefCount);
KeBugCheck(0); KeBugCheck(0);
} }
if (Header->HandleCount < 0) if (Header->HandleCount < 0)
{ {
DbgPrint("Object %x/%x has invalid handle count (%d)\n", CPRINT("Object %x/%x has invalid handle count (%d)\n",
Header, HEADER_TO_BODY(Header), Header->HandleCount); Header, HEADER_TO_BODY(Header), Header->HandleCount);
KeBugCheck(0); KeBugCheck(0);
} }

View file

@ -1,4 +1,4 @@
/* $Id: create.c,v 1.42 2002/01/03 17:59:09 ekohl Exp $ /* $Id: create.c,v 1.43 2002/02/08 02:57:07 chorns Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -467,7 +467,7 @@ PsCreateTeb(HANDLE ProcessHandle,
&ResultLength); &ResultLength);
if (!NT_SUCCESS(Status)) if (!NT_SUCCESS(Status))
{ {
DbgPrint("NtQueryVirtualMemory (Status %x)\n", Status); CPRINT("NtQueryVirtualMemory (Status %x)\n", Status);
KeBugCheck(0); KeBugCheck(0);
} }
/* FIXME: Race between this and the above check */ /* FIXME: Race between this and the above check */

View file

@ -1,4 +1,4 @@
/* $Id: process.c,v 1.76 2002/01/04 22:35:26 hbirr Exp $ /* $Id: process.c,v 1.77 2002/02/08 02:57:07 chorns Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -87,7 +87,7 @@ PsGetNextProcess(PEPROCESS OldProcess)
KernelMode); KernelMode);
if (!NT_SUCCESS(Status)) if (!NT_SUCCESS(Status))
{ {
DbgPrint("PsGetNextProcess(): ObReferenceObjectByPointer failed\n"); CPRINT("PsGetNextProcess(): ObReferenceObjectByPointer failed\n");
KeBugCheck(0); KeBugCheck(0);
} }
ObDereferenceObject(OldProcess); ObDereferenceObject(OldProcess);

View file

@ -1,4 +1,4 @@
/* $Id: thread.c,v 1.87 2002/01/15 02:51:32 dwelch Exp $ /* $Id: thread.c,v 1.88 2002/02/08 02:57:07 chorns Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -230,7 +230,7 @@ VOID PsDispatchThreadNoLock (ULONG NewThreadStatus)
return; return;
} }
} }
DbgPrint("CRITICAL: No threads are runnable\n"); CPRINT("CRITICAL: No threads are runnable\n");
KeBugCheck(0); KeBugCheck(0);
} }
@ -350,7 +350,7 @@ PsPrepareForApplicationProcessorInit(ULONG Id)
IdleThreads[Id] = IdleThread; IdleThreads[Id] = IdleThread;
NtClose(IdleThreadHandle); NtClose(IdleThreadHandle);
DbgPrint("IdleThread for Processor %d has PID %d\n", DPRINT("IdleThread for Processor %d has PID %d\n",
Id, IdleThread->Cid.UniqueThread); Id, IdleThread->Cid.UniqueThread);
} }
@ -663,7 +663,7 @@ NtContinue(IN PCONTEXT Context,
TrapFrame = KeGetCurrentThread()->TrapFrame; TrapFrame = KeGetCurrentThread()->TrapFrame;
if (TrapFrame == NULL) if (TrapFrame == NULL)
{ {
DbgPrint("NtContinue called but TrapFrame was NULL\n"); CPRINT("NtContinue called but TrapFrame was NULL\n");
KeBugCheck(0); KeBugCheck(0);
} }
KeContextToTrapFrame(Context, TrapFrame); KeContextToTrapFrame(Context, TrapFrame);

View file

@ -1,4 +1,4 @@
/* $Id: conio.c,v 1.27 2001/12/02 23:34:43 dwelch Exp $ /* $Id: conio.c,v 1.28 2002/02/08 02:57:10 chorns Exp $
* *
* reactos/subsys/csrss/api/conio.c * reactos/subsys/csrss/api/conio.c
* *
@ -15,6 +15,8 @@
#include "api.h" #include "api.h"
#include <ntdll/rtl.h> #include <ntdll/rtl.h>
#include <ddk/ntddblue.h> #include <ddk/ntddblue.h>
#define NDEBUG
#include <debug.h> #include <debug.h>
#define LOCK RtlEnterCriticalSection(&ActiveConsoleLock) #define LOCK RtlEnterCriticalSection(&ActiveConsoleLock)
@ -738,7 +740,7 @@ VOID STDCALL CsrDrawConsole( PCSRSS_SCREEN_BUFFER Buff )
VOID STDCALL CsrDeleteConsole( PCSRSS_CONSOLE Console ) VOID STDCALL CsrDeleteConsole( PCSRSS_CONSOLE Console )
{ {
ConsoleInput *Event; ConsoleInput *Event;
DPRINT1( "CsrDeleteConsole\n" ); DPRINT( "CsrDeleteConsole\n" );
LOCK; LOCK;
/* Drain input event queue */ /* Drain input event queue */
while( Console->InputEvents.Flink != &Console->InputEvents ) while( Console->InputEvents.Flink != &Console->InputEvents )
@ -777,7 +779,7 @@ VOID STDCALL CsrInitConsoleSupport(VOID)
IO_STATUS_BLOCK Iosb; IO_STATUS_BLOCK Iosb;
CONSOLE_SCREEN_BUFFER_INFO ScrInfo; CONSOLE_SCREEN_BUFFER_INFO ScrInfo;
DbgPrint("CSR: CsrInitConsoleSupport()\n"); DPRINT("CSR: CsrInitConsoleSupport()\n");
RtlInitUnicodeString(&DeviceName, L"\\??\\BlueScreen"); RtlInitUnicodeString(&DeviceName, L"\\??\\BlueScreen");
InitializeObjectAttributes(&ObjectAttributes, InitializeObjectAttributes(&ObjectAttributes,

View file

@ -1,4 +1,4 @@
/* $Id: csrss.c,v 1.9 2001/08/14 12:57:16 ea Exp $ /* $Id: csrss.c,v 1.10 2002/02/08 02:57:10 chorns Exp $
* *
* csrss.c - Client/Server Runtime subsystem * csrss.c - Client/Server Runtime subsystem
* *
@ -51,8 +51,6 @@ VOID NtProcessStartup(PPEB Peb)
HANDLE CsrssInitEvent; HANDLE CsrssInitEvent;
UNICODE_STRING UnicodeString; UNICODE_STRING UnicodeString;
NTSTATUS Status; NTSTATUS Status;
DisplayString(L"Client/Server Runtime Subsystem\n");
ProcParams = RtlNormalizeProcessParams (Peb->ProcessParameters); ProcParams = RtlNormalizeProcessParams (Peb->ProcessParameters);
@ -106,7 +104,6 @@ VOID NtProcessStartup(PPEB Peb)
} }
if (CsrServerInitialization (argc, argv) == TRUE) if (CsrServerInitialization (argc, argv) == TRUE)
{ {
DisplayString( L"CSR: Subsystem initialized.\n" );
NtSetEvent(CsrssInitEvent, NtSetEvent(CsrssInitEvent,
NULL); NULL);

View file

@ -1,4 +1,4 @@
/* $Id: init.c,v 1.29 2001/12/31 19:06:49 dwelch Exp $ /* $Id: init.c,v 1.30 2002/02/08 02:57:10 chorns Exp $
* *
* init.c - Session Manager initialization * init.c - Session Manager initialization
* *
@ -195,9 +195,6 @@ SmInitDosDevices(VOID)
RtlInitUnicodeString(&DeviceName, RtlInitUnicodeString(&DeviceName,
LinkPtr->DeviceName); LinkPtr->DeviceName);
PrintString("SM: Linking %wZ --> %wZ\n",
&LinkName,
&DeviceName);
#if 0 #if 0
/* check if target device exists (can be opened) */ /* check if target device exists (can be opened) */
InitializeObjectAttributes(&ObjectAttributes, InitializeObjectAttributes(&ObjectAttributes,
@ -489,7 +486,6 @@ BOOL InitSessionManager (HANDLE Children[])
/* /*
* Start the Win32 subsystem (csrss.exe) * Start the Win32 subsystem (csrss.exe)
*/ */
DisplayString (L"SM: Running csrss.exe\n");
/* initialize executable path */ /* initialize executable path */
wcscpy(UnicodeBuffer, L"\\??\\"); wcscpy(UnicodeBuffer, L"\\??\\");
@ -528,18 +524,15 @@ BOOL InitSessionManager (HANDLE Children[])
return FALSE; return FALSE;
} }
DbgPrint("SM: Waiting for csrss\n");
NtWaitForSingleObject(CsrssInitEvent, NtWaitForSingleObject(CsrssInitEvent,
FALSE, FALSE,
NULL); NULL);
DbgPrint("SM: Finished waiting for csrss\n");
Children[CHILD_CSRSS] = ProcessInfo.ProcessHandle; Children[CHILD_CSRSS] = ProcessInfo.ProcessHandle;
/* /*
* Start the logon process (winlogon.exe) * Start the logon process (winlogon.exe)
*/ */
DisplayString(L"SM: Running winlogon.exe\n");
/* initialize executable path */ /* initialize executable path */
wcscpy(UnicodeBuffer, L"\\??\\"); wcscpy(UnicodeBuffer, L"\\??\\");

View file

@ -1,4 +1,4 @@
/* $Id: smapi.c,v 1.4 2000/04/03 21:54:42 dwelch Exp $ /* $Id: smapi.c,v 1.5 2002/02/08 02:57:10 chorns Exp $
* *
* Reactos Session Manager * Reactos Session Manager
* *
@ -10,7 +10,7 @@
#include "smss.h" #include "smss.h"
//#define NDEBUG #define NDEBUG
VOID STDCALL VOID STDCALL

View file

@ -1,4 +1,4 @@
/* $Id: smss.c,v 1.8 2000/10/09 00:18:00 ekohl Exp $ /* $Id: smss.c,v 1.9 2002/02/08 02:57:10 chorns Exp $
* *
* smss.c - Session Manager * smss.c - Session Manager
* *
@ -69,13 +69,9 @@ void NtProcessStartup (PPEB Peb)
{ {
HANDLE Children[2]; /* csrss, winlogon */ HANDLE Children[2]; /* csrss, winlogon */
DisplayString( L"Session Manager\n" );
if (TRUE == InitSessionManager(Children)) if (TRUE == InitSessionManager(Children))
{ {
NTSTATUS wws; NTSTATUS wws;
DisplayString( L"SM: Waiting for process termination...\n" );
#if 0 #if 0
wws = NtWaitForMultipleObjects ( wws = NtWaitForMultipleObjects (

View file

@ -1,4 +1,4 @@
/* $Id: services.c,v 1.4 2001/10/21 19:09:06 chorns Exp $ /* $Id: services.c,v 1.5 2002/02/08 02:57:05 chorns Exp $
* *
* service control manager * service control manager
* *
@ -47,6 +47,7 @@
void PrintString (char* fmt,...) void PrintString (char* fmt,...)
{ {
#ifdef DBG
char buffer[512]; char buffer[512];
va_list ap; va_list ap;
@ -55,6 +56,7 @@ void PrintString (char* fmt,...)
va_end(ap); va_end(ap);
OutputDebugStringA(buffer); OutputDebugStringA(buffer);
#endif
} }

View file

@ -1,4 +1,4 @@
/* $Id: shell.c,v 1.7 2001/07/30 11:50:44 ea Exp $ /* $Id: shell.c,v 1.8 2002/02/08 02:57:06 chorns Exp $
* *
* PROJECT : ReactOS Operating System * PROJECT : ReactOS Operating System
* DESCRIPTION: ReactOS' Native Shell * DESCRIPTION: ReactOS' Native Shell
@ -460,8 +460,6 @@ int main(void)
InputHandle = GetStdHandle(STD_INPUT_HANDLE); InputHandle = GetStdHandle(STD_INPUT_HANDLE);
OutputHandle = GetStdHandle(STD_OUTPUT_HANDLE); OutputHandle = GetStdHandle(STD_OUTPUT_HANDLE);
debug_printf("Shell Starting...\n");
ParseCommandLine (); ParseCommandLine ();
for(;;) for(;;)

View file

@ -1,4 +1,4 @@
/* $Id: winlogon.c,v 1.7 2001/06/22 02:10:11 phreak Exp $ /* $Id: winlogon.c,v 1.8 2002/02/08 02:57:06 chorns Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -18,6 +18,8 @@
#include <wchar.h> #include <wchar.h>
#define NDEBUG
#include <debug.h>
/* GLOBALS ******************************************************************/ /* GLOBALS ******************************************************************/
@ -50,14 +52,10 @@ BOOLEAN StartServices(VOID)
CHAR CommandLine[MAX_PATH]; CHAR CommandLine[MAX_PATH];
DWORD Count; DWORD Count;
/* Start the service control manager (services.exe) */ /* Start the service control manager (services.exe) */
PrintString("WL: Running services.exe\n");
GetSystemDirectory(CommandLine, MAX_PATH); GetSystemDirectory(CommandLine, MAX_PATH);
strcat(CommandLine, "\\services.exe"); strcat(CommandLine, "\\services.exe");
PrintString("WL: %s\n", CommandLine);
StartupInfo.cb = sizeof(StartupInfo); StartupInfo.cb = sizeof(StartupInfo);
StartupInfo.lpReserved = NULL; StartupInfo.lpReserved = NULL;
StartupInfo.lpDesktop = NULL; StartupInfo.lpDesktop = NULL;
@ -83,7 +81,6 @@ BOOLEAN StartServices(VOID)
} }
/* wait for event creation (by SCM) for max. 20 seconds */ /* wait for event creation (by SCM) for max. 20 seconds */
PrintString("WL: Waiting for services\n");
for (Count = 0; Count < 20; Count++) for (Count = 0; Count < 20; Count++)
{ {
Sleep(1000); Sleep(1000);
@ -93,19 +90,14 @@ BOOLEAN StartServices(VOID)
"SvcctrlStartEvent_A3725DX"); "SvcctrlStartEvent_A3725DX");
if (ServicesInitEvent != NULL) if (ServicesInitEvent != NULL)
{ {
PrintString("WL: Opened start event\n");
break; break;
} }
PrintString("WL: Waiting for %ld seconds\n", Count+1);
} }
/* wait for event signalization */ /* wait for event signalization */
DbgPrint("WL: Waiting for services initialization\n");
WaitForSingleObject(ServicesInitEvent, INFINITE); WaitForSingleObject(ServicesInitEvent, INFINITE);
CloseHandle(ServicesInitEvent); CloseHandle(ServicesInitEvent);
DbgPrint("WL: Finished waiting for services\n");
return TRUE; return TRUE;
} }
@ -129,7 +121,6 @@ BOOLEAN StartLsass(VOID)
} }
/* Start the local security authority subsystem (lsass.exe) */ /* Start the local security authority subsystem (lsass.exe) */
DbgPrint("WL: Running lsass.exe\n");
GetSystemDirectory(CommandLine, MAX_PATH); GetSystemDirectory(CommandLine, MAX_PATH);
strcat(CommandLine, "\\lsass.exe"); strcat(CommandLine, "\\lsass.exe");
@ -158,11 +149,10 @@ BOOLEAN StartLsass(VOID)
return(FALSE); return(FALSE);
} }
DbgPrint("WL: Waiting for lsass\n"); DPRINT("WL: Waiting for lsass\n");
WaitForSingleObject(LsassInitEvent, INFINITE); WaitForSingleObject(LsassInitEvent, INFINITE);
CloseHandle(LsassInitEvent); CloseHandle(LsassInitEvent);
DbgPrint("WL: Finished waiting for lsass\n");
return(TRUE); return(TRUE);
} }
@ -174,8 +164,6 @@ VOID DoLoginUser(PCHAR Name, PCHAR Password)
CHAR CommandLine[MAX_PATH]; CHAR CommandLine[MAX_PATH];
CHAR CurrentDirectory[MAX_PATH]; CHAR CurrentDirectory[MAX_PATH];
DbgPrint("WL: Running shell.exe\n");
GetSystemDirectory(CommandLine, MAX_PATH); GetSystemDirectory(CommandLine, MAX_PATH);
strcat(CommandLine, "\\shell.exe"); strcat(CommandLine, "\\shell.exe");
@ -316,6 +304,7 @@ WinMain(HINSTANCE hInstance,
/* Main loop */ /* Main loop */
for (;;) for (;;)
{ {
#if 0
/* Display login prompt */ /* Display login prompt */
WriteConsole(GetStdHandle(STD_OUTPUT_HANDLE), WriteConsole(GetStdHandle(STD_OUTPUT_HANDLE),
LoginPrompt, LoginPrompt,
@ -351,7 +340,7 @@ WinMain(HINSTANCE hInstance,
i++; i++;
} while (Password[i - 1] != '\n'); } while (Password[i - 1] != '\n');
Password[i - 1] =0; Password[i - 1] =0;
#endif
DoLoginUser(LoginName, Password); DoLoginUser(LoginName, Password);
} }

View file

@ -1,4 +1,4 @@
/* $Id: dllmain.c,v 1.23 2002/01/27 01:11:24 dwelch Exp $ /* $Id: dllmain.c,v 1.24 2002/02/08 02:57:10 chorns Exp $
* *
* Entry Point for win32k.sys * Entry Point for win32k.sys
*/ */
@ -36,8 +36,6 @@ DllMain (
NTSTATUS Status; NTSTATUS Status;
BOOLEAN Result; BOOLEAN Result;
DbgPrint("Win32 kernel mode driver\n");
/* /*
* Register user mode call interface * Register user mode call interface
* (system service table index = 1) * (system service table index = 1)
@ -49,8 +47,6 @@ DllMain (
return STATUS_UNSUCCESSFUL; return STATUS_UNSUCCESSFUL;
} }
DbgPrint("System services added successfully!\n");
/* /*
* Register our per-process and per-thread structures. * Register our per-process and per-thread structures.
*/ */
@ -99,8 +95,6 @@ BOOLEAN
STDCALL STDCALL
W32kInitialize (VOID) W32kInitialize (VOID)
{ {
DbgPrint("W32kInitialize\n");
InitGdiObjectHandleTable (); InitGdiObjectHandleTable ();
// FIXME: Retrieve name from registry // FIXME: Retrieve name from registry