mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
[DDK]
Define RxIsFcbTableLockAcquired CORE-8204 CORE-11327 CORE-13581 svn path=/trunk/; revision=75414
This commit is contained in:
parent
2d5ebe0ac1
commit
bf93adc414
1 changed files with 3 additions and 0 deletions
|
@ -57,6 +57,9 @@ RxFcbTableRemoveFcb(
|
|||
|
||||
#define RxIsFcbTableLockExclusive(T) ExIsResourceAcquiredExclusiveLite(&(T)->TableLock)
|
||||
|
||||
#define RxIsFcbTableLockAcquired(T) (ExIsResourceAcquiredSharedLite(&(T)->TableLock) || \
|
||||
ExIsResourceAcquiredExclusiveLite(&(T)->TableLock))
|
||||
|
||||
#ifdef __REACTOS__
|
||||
#define FCB_HASH_BUCKET(T, H) &(T)->HashBuckets[H % (T)->NumberOfBuckets]
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue