Terraria v1.4.4.9
Terraria source code documentation
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros

◆ SpinLock()

System.Threading.SpinLock.SpinLock ( bool enableThreadOwnerTracking)
inline

Definition at line 85 of file SpinLock.cs.

86 {
87 _owner = 0;
88 if (!enableThreadOwnerTracking)
89 {
90 _owner |= int.MinValue;
91 }
92 }

References System.Threading.SpinLock._owner.