mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 08:05:43 +00:00
Set svn:keywords and svn:eol-style properties
Change some DPRINT1 to DPRINT in bug.c, clock.c, gate.c svn path=/trunk/; revision=15418
This commit is contained in:
parent
b1274d7f85
commit
725a500778
4 changed files with 27 additions and 27 deletions
|
@ -53,7 +53,7 @@ KiInitializeBugCheck(VOID)
|
|||
/* 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 @@ KiInitializeBugCheck(VOID)
|
|||
/* 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;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -77,7 +77,7 @@ KiInitializeSystemClock(VOID)
|
|||
{
|
||||
TIME_FIELDS TimeFields;
|
||||
|
||||
DPRINT1("KiInitializeSystemClock()\n");
|
||||
DPRINT("KiInitializeSystemClock()\n");
|
||||
InitializeListHead(&KiTimerListHead);
|
||||
KeInitializeDpc(&KiExpireTimerDpc, (PKDEFERRED_ROUTINE)KiExpireTimers, 0);
|
||||
|
||||
|
@ -96,7 +96,7 @@ KiInitializeSystemClock(VOID)
|
|||
SharedUserData->SystemTime.High1Time = SystemBootTime.u.HighPart;
|
||||
|
||||
KiClockSetupComplete = TRUE;
|
||||
DPRINT1("Finished KiInitializeSystemClock()\n");
|
||||
DPRINT("Finished KiInitializeSystemClock()\n");
|
||||
}
|
||||
|
||||
VOID
|
||||
|
|
|
@ -19,7 +19,7 @@ VOID
|
|||
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 @@ KeWaitForGate(PKGATE Gate,
|
|||
PKWAIT_BLOCK GateWaitBlock;
|
||||
NTSTATUS Status;
|
||||
|
||||
DPRINT1("KeWaitForGate(Gate %x)\n", Gate);
|
||||
DPRINT("KeWaitForGate(Gate %x)\n", Gate);
|
||||
|
||||
do
|
||||
{
|
||||
|
@ -74,7 +74,7 @@ KeWaitForGate(PKGATE Gate,
|
|||
/* Handle Kernel Queues */
|
||||
if (CurrentThread->Queue)
|
||||
{
|
||||
DPRINT1("Waking Queue\n");
|
||||
DPRINT("Waking Queue\n");
|
||||
KiWakeQueue(CurrentThread->Queue);
|
||||
}
|
||||
|
||||
|
@ -82,7 +82,7 @@ KeWaitForGate(PKGATE Gate,
|
|||
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 @@ KeWaitForGate(PKGATE Gate,
|
|||
/* 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 @@ KeSignalGateBoostPriority(PKGATE Gate)
|
|||
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 @@ KeSignalGateBoostPriority(PKGATE Gate)
|
|||
/* 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;
|
||||
|
||||
|
|
|
@ -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 @@ _NtProcessStartup:
|
|||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue