mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 11:35:58 +00:00
- SMP SYNCH_LEVEL for x86 is IPI_LEVEL - 2 since 2K3
svn path=/trunk/; revision=36874
This commit is contained in:
parent
08f6983072
commit
1afb6785e5
|
@ -142,7 +142,11 @@ Author:
|
|||
#ifndef CONFIG_SMP
|
||||
#define SYNCH_LEVEL DISPATCH_LEVEL
|
||||
#else
|
||||
#if (NTDDI_VERSION < NTDDI_WS03)
|
||||
#define SYNCH_LEVEL (IPI_LEVEL - 1)
|
||||
#else
|
||||
#define SYNCH_LEVEL (IPI_LEVEL - 2)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue