Fixed the MP build.

svn path=/trunk/; revision=17863
This commit is contained in:
Hartmut Birr 2005-09-15 16:52:23 +00:00
parent b3f6e62113
commit a9ef5d9d40
4 changed files with 5 additions and 5 deletions

View file

@ -80,7 +80,7 @@ ShutdownThreadMain(PVOID Context)
KeInitializeDpc(Dpc, KiHaltProcessorDpcRoutine, (PVOID)Dpc);
KeSetTargetProcessorDpc(Dpc, i);
KeInsertQueueDpc(Dpc, NULL, NULL);
KiIpiSendRequest(1 << i, IPI_REQUEST_DPC);
KiIpiSendRequest(1 << i, IPI_DPC);
}
}
KeLowerIrql(OldIrql);

View file

@ -341,7 +341,7 @@ KiInsertQueueApc(PKAPC Apc,
if (Prcb->CurrentThread == Thread)
{
ASSERT (CurrentPrcb != Prcb);
KiIpiSendRequest(Prcb->SetMember, IPI_REQUEST_APC);
KiIpiSendRequest(Prcb->SetMember, IPI_APC);
break;
}
}

View file

@ -428,7 +428,7 @@ KeBugCheckWithTf(ULONG BugCheckCode,
if (i != (LONG)KeGetCurrentProcessorNumber())
{
/* Send the IPI and give them one second to catch up */
KiIpiSendRequest(1 << i, IPI_REQUEST_FREEZE);
KiIpiSendRequest(1 << i, IPI_FREEZE);
KeStallExecutionProcessor(1000000);
}
}

View file

@ -246,10 +246,10 @@ KeInsertQueueDpc(PKDPC Dpc,
if (Dpc->Number >= MAXIMUM_PROCESSORS) {
KiIpiSendRequest(1 << (Dpc->Number - MAXIMUM_PROCESSORS), IPI_REQUEST_DPC);
KiIpiSendRequest(1 << (Dpc->Number - MAXIMUM_PROCESSORS), IPI_DPC);
} else {
KiIpiSendRequest(1 << Dpc->Number, IPI_REQUEST_DPC);
KiIpiSendRequest(1 << Dpc->Number, IPI_DPC);
}
}