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