mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 03:05:40 +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
|
VOID FASTCALL
|
||||||
KfLowerIrql (KIRQL NewIrql)
|
KfLowerIrql (KIRQL NewIrql)
|
||||||
{
|
{
|
||||||
KIRQL OldIrql;
|
|
||||||
|
|
||||||
if (NewIrql > KeGetCurrentIrql ())
|
if (NewIrql > KeGetCurrentIrql ())
|
||||||
{
|
{
|
||||||
|
@ -403,3 +402,22 @@ HalEnableSystemInterrupt (ULONG Vector,
|
||||||
|
|
||||||
return TRUE;
|
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…
Add table
Add a link
Reference in a new issue