mirror of
https://github.com/reactos/reactos.git
synced 2025-04-27 17:10:22 +00:00
[XDK] Fix definition of KeRaiseIrqlToSynchLevel for x64 UP
This commit is contained in:
parent
893715b722
commit
b9958c7be7
1 changed files with 4 additions and 0 deletions
|
@ -116,7 +116,11 @@ FORCEINLINE
|
|||
KIRQL
|
||||
KeRaiseIrqlToSynchLevel(VOID)
|
||||
{
|
||||
#ifdef CONFIG_SMP
|
||||
return KfRaiseIrql(12); // SYNCH_LEVEL = IPI_LEVEL - 2
|
||||
#else
|
||||
return KfRaiseIrql(2); // SYNCH_LEVEL = DISPATCH_LEVEL
|
||||
#endif
|
||||
}
|
||||
|
||||
FORCEINLINE
|
||||
|
|
Loading…
Reference in a new issue