5 writes to _next
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\LowLevelLifoSemaphore.cs (5)
311
blockerNode.
_next
= _blockerStack;
412
top.
_next
= null;
445
node.
_next
= null;
454
current.
_next
= node._next;
455
node.
_next
= null;
5 references to _next
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\LowLevelLifoSemaphore.cs (5)
411
_blockerStack = top.
_next
;
444
_blockerStack = node.
_next
;
452
if (current.
_next
== node)
454
current._next = node.
_next
;
460
current = current.
_next
;