mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 19:41:57 +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
|
#ifndef CONFIG_SMP
|
||||||
#define SYNCH_LEVEL DISPATCH_LEVEL
|
#define SYNCH_LEVEL DISPATCH_LEVEL
|
||||||
#else
|
#else
|
||||||
|
#if (NTDDI_VERSION < NTDDI_WS03)
|
||||||
#define SYNCH_LEVEL (IPI_LEVEL - 1)
|
#define SYNCH_LEVEL (IPI_LEVEL - 1)
|
||||||
|
#else
|
||||||
|
#define SYNCH_LEVEL (IPI_LEVEL - 2)
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in a new issue