to match Windows names and make them available for the whole kernel.
EX_WORK_QUEUE ExWorkerQueue[MaximumWorkQueue];
/* Accounting of the total threads and registry hacked threads */
EX_WORK_QUEUE ExWorkerQueue[MaximumWorkQueue];
/* Accounting of the total threads and registry hacked threads */
-ULONG ExpCriticalWorkerThreads;
-ULONG ExpDelayedWorkerThreads;
+ULONG ExCriticalWorkerThreads;
+ULONG ExDelayedWorkerThreads;
ULONG ExpAdditionalCriticalWorkerThreads;
ULONG ExpAdditionalDelayedWorkerThreads;
ULONG ExpAdditionalCriticalWorkerThreads;
ULONG ExpAdditionalDelayedWorkerThreads;
{
/* Create the thread */
ExpCreateWorkerThread(CriticalWorkQueue, FALSE);
{
/* Create the thread */
ExpCreateWorkerThread(CriticalWorkQueue, FALSE);
- ExpCriticalWorkerThreads++;
+ ExCriticalWorkerThreads++;
}
/* Create the built-in worker threads for the delayed queue */
}
/* Create the built-in worker threads for the delayed queue */
{
/* Create the thread */
ExpCreateWorkerThread(DelayedWorkQueue, FALSE);
{
/* Create the thread */
ExpCreateWorkerThread(DelayedWorkQueue, FALSE);
- ExpDelayedWorkerThreads++;
+ ExDelayedWorkerThreads++;
}
/* Create the built-in worker thread for the hypercritical queue */
}
/* Create the built-in worker thread for the hypercritical queue */
extern LIST_ENTRY ExpPagedLookasideListHead;
extern KSPIN_LOCK ExpNonPagedLookasideListLock;
extern KSPIN_LOCK ExpPagedLookasideListLock;
extern LIST_ENTRY ExpPagedLookasideListHead;
extern KSPIN_LOCK ExpNonPagedLookasideListLock;
extern KSPIN_LOCK ExpPagedLookasideListLock;
+extern ULONG ExCriticalWorkerThreads;
+extern ULONG ExDelayedWorkerThreads;
/*
* NT/Cm Version Info variables
/*
* NT/Cm Version Info variables