Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Exit() [2/2]

void System.Threading.SpinLock.Exit ( bool useMemoryBarrier)
inline

Definition at line 258 of file SpinLock.cs.

259 {
260 int owner = _owner;
261 if ((owner & int.MinValue) != 0 && !useMemoryBarrier)
262 {
263 _owner = owner & -2;
264 }
265 else
266 {
267 ExitSlowPath(useMemoryBarrier);
268 }
269 }
void ExitSlowPath(bool useMemoryBarrier)
Definition SpinLock.cs:271

References System.Threading.SpinLock._owner, and System.Threading.SpinLock.ExitSlowPath().