Set svn:keywords and svn:eol-style properties Change some DPRINT1 to DPRINT in bug.c, clock.c, gate.c Modified: trunk/reactos/ntoskrnl/ke/bug.c Modified: trunk/reactos/ntoskrnl/ke/clock.c Modified: trunk/reactos/ntoskrnl/ke/gate.c Modified: trunk/reactos/ntoskrnl/ke/i386/main.S _____
Modified: trunk/reactos/ntoskrnl/ke/bug.c --- trunk/reactos/ntoskrnl/ke/bug.c 2005-05-20 00:17:35 UTC (rev 15417) +++ trunk/reactos/ntoskrnl/ke/bug.c 2005-05-20 00:47:16 UTC (rev 15418) @@ -53,7 +53,7 @@
/* Make sure it worked */ if (NT_SUCCESS(Status)) {
- DPRINT1("Found Bugcheck Resource Data!\n"); + DPRINT("Found Bugcheck Resource Data!\n");
/* Now actually get a pointer to it */ Status = LdrAccessResource((PVOID)KERNEL_BASE, @@ -64,7 +64,7 @@ /* Make sure it worked */ if (NT_SUCCESS(Status)) {
- DPRINT1("Got Pointer to Bugcheck Resource Data!\n"); + DPRINT("Got Pointer to Bugcheck Resource Data!\n"); KiBugCodeMessages = BugCheckData; } } _____
Modified: trunk/reactos/ntoskrnl/ke/clock.c --- trunk/reactos/ntoskrnl/ke/clock.c 2005-05-20 00:17:35 UTC (rev 15417) +++ trunk/reactos/ntoskrnl/ke/clock.c 2005-05-20 00:47:16 UTC (rev 15418) @@ -77,7 +77,7 @@
{ TIME_FIELDS TimeFields;
- DPRINT1("KiInitializeSystemClock()\n"); + DPRINT("KiInitializeSystemClock()\n"); InitializeListHead(&KiTimerListHead); KeInitializeDpc(&KiExpireTimerDpc, (PKDEFERRED_ROUTINE)KiExpireTimers, 0);
@@ -96,7 +96,7 @@ SharedUserData->SystemTime.High1Time = SystemBootTime.u.HighPart;
KiClockSetupComplete = TRUE; - DPRINT1("Finished KiInitializeSystemClock()\n"); + DPRINT("Finished KiInitializeSystemClock()\n"); }
VOID Property changes on: trunk/reactos/ntoskrnl/ke/clock.c ___________________________________________________________________ Name: svn:keywords + author date id revision Name: svn:eol-style + native _____
Modified: trunk/reactos/ntoskrnl/ke/gate.c --- trunk/reactos/ntoskrnl/ke/gate.c 2005-05-20 00:17:35 UTC (rev 15417) +++ trunk/reactos/ntoskrnl/ke/gate.c 2005-05-20 00:47:16 UTC (rev 15418) @@ -19,7 +19,7 @@
FASTCALL KeInitializeGate(PKGATE Gate) { - DPRINT1("KeInitializeGate(Gate %x)\n", Gate); + DPRINT("KeInitializeGate(Gate %x)\n", Gate);
/* Initialize the Dispatcher Header */ KeInitializeDispatcherHeader(&Gate->Header, @@ -39,7 +39,7 @@ PKWAIT_BLOCK GateWaitBlock; NTSTATUS Status;
- DPRINT1("KeWaitForGate(Gate %x)\n", Gate); + DPRINT("KeWaitForGate(Gate %x)\n", Gate);
do { @@ -74,7 +74,7 @@ /* Handle Kernel Queues */ if (CurrentThread->Queue) { - DPRINT1("Waking Queue\n"); + DPRINT("Waking Queue\n"); KiWakeQueue(CurrentThread->Queue); }
@@ -82,7 +82,7 @@ KeReleaseSpinLock(&CurrentThread->ApcQueueLock, OldIrql);
/* Block the Thread */ - DPRINT1("Blocking the Thread: %x\n", CurrentThread); + DPRINT("Blocking the Thread: %x\n", CurrentThread); KiBlockThread(&Status, CurrentThread->Alertable, WaitMode, @@ -91,7 +91,7 @@ /* Check if we were executing an APC */ if (Status != STATUS_KERNEL_APC) return;
- DPRINT1("Looping Again\n"); + DPRINT("Looping Again\n"); } while (TRUE); }
@@ -104,7 +104,7 @@ KIRQL OldIrql; NTSTATUS WaitStatus = STATUS_SUCCESS;
- DPRINT1("KeSignalGateBoostPriority(EveGate %x)\n", Gate); + DPRINT("KeSignalGateBoostPriority(EveGate %x)\n", Gate);
/* Acquire Dispatcher Database Lock */ OldIrql = KeAcquireDispatcherDatabaseLock(); @@ -132,12 +132,12 @@ /* Increment the Queue's active threads */ if (WaitThread->Queue) { - DPRINT1("Incrementing Queue's active threads\n"); + DPRINT("Incrementing Queue's active threads\n"); WaitThread->Queue->CurrentCount++; }
/* Reschedule the Thread */ - DPRINT1("Unblocking the Thread\n"); + DPRINT("Unblocking the Thread\n"); KiUnblockThread(WaitThread, &WaitStatus, EVENT_INCREMENT); return;
Property changes on: trunk/reactos/ntoskrnl/ke/gate.c ___________________________________________________________________ Name: svn:keywords + author date id revision Name: svn:eol-style + native Property changes on: trunk/reactos/ntoskrnl/ke/i386/ctxswitch.S ___________________________________________________________________ Name: svn:keywords + author date id revision Name: svn:eol-style + native _____
Modified: trunk/reactos/ntoskrnl/ke/i386/main.S --- trunk/reactos/ntoskrnl/ke/i386/main.S 2005-05-20 00:17:35 UTC (rev 15417) +++ trunk/reactos/ntoskrnl/ke/i386/main.S 2005-05-20 00:47:16 UTC (rev 15418) @@ -6,7 +6,7 @@
#include <internal/i386/mm.h> #include <internal/i386/fpu.h>
-#define AP_MAGIC (0x12481020) +#define AP_MAGIC (0x12481020)
.globl _NtProcessStartup
@@ -23,20 +23,20 @@ cmpl $AP_MAGIC, %ecx jne .m1
- pushl $0 - popfl - - /* - * Reserve space for the floating point save area. - */ - subl $SIZEOF_FX_SAVE_AREA, %esp - - /* - * Call the application processor initialization code - */ - pushl $0 - call _KiSystemStartup - + pushl $0 + popfl + + /* + * Reserve space for the floating point save area. + */ + subl $SIZEOF_FX_SAVE_AREA, %esp + + /* + * Call the application processor initialization code + */ + pushl $0 + call _KiSystemStartup + .m1: /* Load the initial kernel stack */ lea _kernel_stack, %eax Property changes on: trunk/reactos/ntoskrnl/ke/i386/main.S ___________________________________________________________________ Name: svn:keywords + author date id revision Name: svn:eol-style + native Property changes on: trunk/reactos/ntoskrnl/ke/i386/usercall.S ___________________________________________________________________ Name: svn:keywords + author date id revision Name: svn:eol-style + native Property changes on: trunk/reactos/ntoskrnl/ke/i386/vdm.c ___________________________________________________________________ Name: svn:keywords + author date id revision Name: svn:eol-style + native Property changes on: trunk/reactos/ntoskrnl/ke/usercall.c ___________________________________________________________________ Name: svn:keywords + author date id revision Name: svn:eol-style + native