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