mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 18:02:05 +00:00
copied HalRequestSoftwareInterrupt from uniproc irql.c to fix SMP builds
svn path=/trunk/; revision=10071
This commit is contained in:
parent
14a26ef7bf
commit
7933210d3c
1 changed files with 19 additions and 1 deletions
|
@ -178,7 +178,6 @@ HalpLowerIrql(KIRQL NewIrql)
|
|||
VOID FASTCALL
|
||||
KfLowerIrql (KIRQL NewIrql)
|
||||
{
|
||||
KIRQL OldIrql;
|
||||
|
||||
if (NewIrql > KeGetCurrentIrql ())
|
||||
{
|
||||
|
@ -403,3 +402,22 @@ HalEnableSystemInterrupt (ULONG Vector,
|
|||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
VOID FASTCALL
|
||||
HalRequestSoftwareInterrupt(
|
||||
IN KIRQL Request)
|
||||
{
|
||||
switch (Request)
|
||||
{
|
||||
case APC_LEVEL:
|
||||
//ApcRequested = TRUE;
|
||||
break;
|
||||
|
||||
case DISPATCH_LEVEL:
|
||||
//DpcRequested = TRUE;
|
||||
break;
|
||||
|
||||
default:
|
||||
KEBUGCHECK(0);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue