2 writes to _waitThreadsHead
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.
115
_waitThreadsHead
= current.Next;
1 reference to _waitThreadsHead
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Threading\PortableThreadPool.WaitThread.cs (1)
112
WaitThreadNode? current =
_waitThreadsHead
!;