Skip to content

Commit

Permalink
Merge pull request #1310 from AArnott/biggerStack
Browse files Browse the repository at this point in the history
Increase `AsyncCrossProcessMutex` stack size
  • Loading branch information
AArnott committed May 2, 2024
2 parents a2c50e0 + 36cc299 commit 8867a27
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class AsyncCrossProcessMutex
public AsyncCrossProcessMutex(string name)
{
Requires.NotNullOrEmpty(name);
this.namedMutexOwner = new Thread(this.MutexOwnerThread, 100 * 1024)
this.namedMutexOwner = new Thread(this.MutexOwnerThread, 256 * 1024)
{
Name = $"{nameof(AsyncCrossProcessMutex)}-{name}",
};
Expand Down

0 comments on commit 8867a27

Please sign in to comment.