[XDK] Fix definition of KeRaiseIrqlToSynchLevel for x64 UP

This commit is contained in:
Timo Kreuzer 2023-08-10 14:46:29 +03:00
parent 893715b722
commit b9958c7be7

View file

@ -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