xref: /reactos/sdk/include/ddk/rxdata.h (revision c2c66aff)
1 #ifndef _RDBSSDATA_
2 #define _RDBSSDATA_
3 
4 extern RX_DISPATCHER RxDispatcher;
5 extern RX_WORK_QUEUE_DISPATCHER RxDispatcherWorkQueues;
6 
7 extern KMUTEX RxSerializationMutex;
8 #define RxAcquireSerializationMutex() KeWaitForSingleObject(&RxSerializationMutex, Executive, KernelMode, FALSE, NULL)
9 #define RxReleaseSerializationMutex() KeReleaseMutex(&RxSerializationMutex, FALSE)
10 
11 extern PRDBSS_DEVICE_OBJECT RxFileSystemDeviceObject;
12 
13 #if DBG
14 extern ULONG RxFsdEntryCount;
15 #endif
16 
17 extern LIST_ENTRY RxSrvCalldownList;
18 extern LIST_ENTRY RxActiveContexts;
19 
20 #endif
21