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