mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
KeGetDCacheFillSize is arch-specific, so define it in the x86 region only
svn path=/trunk/; revision=41867
This commit is contained in:
parent
a3d7cdabd2
commit
9964f5e49f
1 changed files with 3 additions and 5 deletions
|
@ -5676,6 +5676,8 @@ KefReleaseSpinLockFromDpcLevel(
|
|||
#define KeAcquireSpinLock(a,b) *(b) = KfAcquireSpinLock(a)
|
||||
#define KeReleaseSpinLock(a,b) KfReleaseSpinLock(a,b)
|
||||
|
||||
#define KeGetDcacheFillSize() 1L
|
||||
|
||||
#else // !defined (_X86_)
|
||||
|
||||
FORCEINLINE
|
||||
|
@ -5710,13 +5712,9 @@ KeAcquireSpinLockRaiseToDpc(
|
|||
|
||||
#define KeAcquireSpinLock(SpinLock, OldIrql) \
|
||||
*(OldIrql) = KeAcquireSpinLockRaiseToDpc(SpinLock)
|
||||
|
||||
|
||||
#endif // !defined (_X86_)
|
||||
|
||||
#define KeGetDcacheFillSize() 1L
|
||||
|
||||
|
||||
|
||||
/*
|
||||
** Utillity functions
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue