2 implementations of IServerMutex
VBCSCompiler (2)
src\Compilers\Shared\BuildServerConnection.cs (2)
640internal sealed class ServerFileMutex : IServerMutex 829internal sealed class ServerNamedMutex : IServerMutex
3 references to IServerMutex
VBCSCompiler (3)
src\Compilers\Server\VBCSCompiler\BuildServerController.cs (1)
121using (var serverMutex = BuildServerConnection.OpenOrCreateMutex(name: mutexName,
src\Compilers\Shared\BuildServerConnection.cs (2)
210IServerMutex? clientMutex = null; 599internal static IServerMutex OpenOrCreateMutex(string name, out bool createdNew)