2 instantiations of TaskWorkerThread
Microsoft.Build.Engine (2)
Engine\TaskExecutionModule.cs (1)
65workerThread = new TaskWorkerThread(this, profileExecution);
Engine\TaskWorkerThread.cs (1)
417workerThread = new TaskWorkerThread(parentModule, exitTaskThreads, exitTaskThreadsCache, workerThreadQueue, handleIdToWorkerThread,
10 references to TaskWorkerThread
Microsoft.Build.Engine (10)
Engine\TaskExecutionModule.cs (2)
587internal TaskWorkerThread GetWorkerThread() 607private TaskWorkerThread workerThread;
Engine\TaskWorkerThread.cs (8)
56this.workerThreadQueue = new Queue<TaskWorkerThread>(); 75Queue<TaskWorkerThread> workerThreadQueue, 405TaskWorkerThread workerThread = null; 481private TaskWorkerThread GetWorkerThreadForHandleId(int handleId) 483return (TaskWorkerThread)handleIdToWorkerThread[handleId]; 509TaskWorkerThread workerThread = GetWorkerThreadForHandleId(handleId); 566TaskWorkerThread workerThread = GetWorkerThreadForHandleId(buildResult.HandleId); 604private Queue<TaskWorkerThread> workerThreadQueue; // Queue of idle worker thread ready to be activated