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