diff --git a/Exo.Core/AsyncGlobalMutex.cs b/Exo.Core/AsyncGlobalMutex.cs index 2f3fe0c6..0bdb547d 100644 --- a/Exo.Core/AsyncGlobalMutex.cs +++ b/Exo.Core/AsyncGlobalMutex.cs @@ -165,7 +165,7 @@ public static AsyncGlobalMutex Get(string name) private AsyncGlobalMutex(string mutexName) { _mutex = new(false, mutexName); - _thread = new(MutexThread); + _thread = new(MutexThread) { IsBackground = true }; _pendingTaskList = new(); _waitQueue = new(); _manualResetEvent = new(false);