2 writes to workerThreadQueue
Microsoft.Build.Engine (2)
Engine\TaskWorkerThread.cs (2)
56this.workerThreadQueue = new Queue<TaskWorkerThread>(); 86this.workerThreadQueue = workerThreadQueue;
6 references to workerThreadQueue
Microsoft.Build.Engine (6)
Engine\TaskWorkerThread.cs (6)
178lock (workerThreadQueue) 180workerThreadQueue.Enqueue(this); 406lock (workerThreadQueue) 408if (workerThreadQueue.Count != 0) 411workerThread = workerThreadQueue.Dequeue(); 417workerThread = new TaskWorkerThread(parentModule, exitTaskThreads, exitTaskThreadsCache, workerThreadQueue, handleIdToWorkerThread,