2 instantiations of WaitThreadNode
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Threading\PortableThreadPool.WaitThread.cs (2)
48
WaitThreadNode? current = _waitThreadsHead ??= new
WaitThreadNode
(new WaitThread()); // Lazily create the first wait thread.
63
prev.Next = new
WaitThreadNode
(new WaitThread());
6 references to WaitThreadNode
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Threading\PortableThreadPool.WaitThread.cs (6)
30
private
WaitThreadNode
? _waitThreadsHead;
48
WaitThreadNode
? current = _waitThreadsHead ??= new WaitThreadNode(new WaitThread()); // Lazily create the first wait thread.
51
WaitThreadNode
prev;
112
WaitThreadNode
? current = _waitThreadsHead!;
119
WaitThreadNode
prev;
138
public
WaitThreadNode
? Next { get; set; }