1 write to threadLocals
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\ThreadPoolWorkQueue.cs (1)
586
return ThreadPoolWorkQueueThreadLocals.
threadLocals
= new ThreadPoolWorkQueueThreadLocals(this);
6 references to threadLocals
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\ThreadPoolWorkQueue.cs (6)
579
ThreadPoolWorkQueueThreadLocals.
threadLocals
?? CreateThreadLocals();
584
Debug.Assert(ThreadPoolWorkQueueThreadLocals.
threadLocals
== null);
626
if (!forceGlobal && (tl = ThreadPoolWorkQueueThreadLocals.
threadLocals
) != null)
633
s_assignableWorkItemQueueCount > 0 && (tl = ThreadPoolWorkQueueThreadLocals.
threadLocals
) != null
694
if (ThreadPoolWorkQueueThreadLocals.
threadLocals
is ThreadPoolWorkQueueThreadLocals tl)
736
ThreadPoolWorkQueueThreadLocals? tl = ThreadPoolWorkQueueThreadLocals.
threadLocals
;