Skip to content

Commit 8867a27

Browse files
authored
Merge pull request #1310 from AArnott/biggerStack
Increase `AsyncCrossProcessMutex` stack size
2 parents a2c50e0 + 36cc299 commit 8867a27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.VisualStudio.Threading/AsyncCrossProcessMutex.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public class AsyncCrossProcessMutex
5454
public AsyncCrossProcessMutex(string name)
5555
{
5656
Requires.NotNullOrEmpty(name);
57-
this.namedMutexOwner = new Thread(this.MutexOwnerThread, 100 * 1024)
57+
this.namedMutexOwner = new Thread(this.MutexOwnerThread, 256 * 1024)
5858
{
5959
Name = $"{nameof(AsyncCrossProcessMutex)}-{name}",
6060
};

0 commit comments

Comments
 (0)