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

◆ ReleaseMutex()

void System.Threading.Mutex.ReleaseMutex ( )
inline

Definition at line 103 of file Mutex.cs.

104 {
105 if (!Interop.Kernel32.ReleaseMutex(base.SafeWaitHandle))
106 {
107 throw new ApplicationException(SR.Arg_SynchronizationLockException);
108 }
109 }
static bool ReleaseMutex(SafeWaitHandle handle)

References System.SR.Arg_SynchronizationLockException, and Interop.Kernel32.ReleaseMutex().