3 writes to controllerThread
System.Workflow.Runtime (3)
DebugEngine\DebugControllerThread.cs (3)
32this.controllerThread = new Thread(ControllerThreadFunction); 82this.controllerThread = null; 85this.controllerThread = null;
12 references to controllerThread
System.Workflow.Runtime (12)
DebugEngine\DebugControllerThread.cs (12)
33this.controllerThread.IsBackground = true; 34this.controllerThread.Priority = ThreadPriority.Lowest; 35this.controllerThread.Name = "__dct__"; 41if (this.controllerThread == null) 45this.controllerThread.Start(instanceTable); 55if (this.controllerThread != null) 63if (this.controllerThread.IsAlive && IntPtr.Size == 8) 65while (this.controllerThread.ThreadState == System.Threading.ThreadState.WaitSleepJoin) 67this.controllerThread.Start(); 68this.controllerThread.Join(); 72this.controllerThread.Join(); 203return this.controllerThread.ManagedThreadId;