We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
AsyncCrossProcessMutex
1 parent 37db90c commit 36cc299Copy full SHA for 36cc299
src/Microsoft.VisualStudio.Threading/AsyncCrossProcessMutex.cs
@@ -54,7 +54,7 @@ public class AsyncCrossProcessMutex
54
public AsyncCrossProcessMutex(string name)
55
{
56
Requires.NotNullOrEmpty(name);
57
- this.namedMutexOwner = new Thread(this.MutexOwnerThread, 100 * 1024)
+ this.namedMutexOwner = new Thread(this.MutexOwnerThread, 256 * 1024)
58
59
Name = $"{nameof(AsyncCrossProcessMutex)}-{name}",
60
};
0 commit comments