3 references to OpenOrCreateMutex
Microsoft.Build (3)
BackEnd\Client\MSBuildClient.cs (1)
441
using var serverLaunchMutex = ServerNamedMutex.
OpenOrCreateMutex
(serverLaunchMutexName, out bool mutexCreatedNew);
BackEnd\Node\OutOfProcServerNode.cs (2)
104
using var serverRunningMutex = ServerNamedMutex.
OpenOrCreateMutex
(GetRunningServerMutexName(handshake), out bool mutexCreatedNew);
375
using var serverBusyMutex = ServerNamedMutex.
OpenOrCreateMutex
(name: _serverBusyMutexName, createdNew: out var holdsMutex);