2 writes to _waitInfo
System.Private.CoreLib (2)
src\System\Threading\Thread.CoreCLR.cs (2)
558
return Volatile.Read(ref
_waitInfo
) ?? AllocateWaitInfo();
562
Interlocked.CompareExchange(ref
_waitInfo
, new WaitSubsystem.ThreadWaitInfo(this), null!);
2 references to _waitInfo
System.Private.CoreLib (2)
src\System\Threading\Thread.CoreCLR.cs (2)
563
return
_waitInfo
;
580
_waitInfo
?.OnThreadExiting();