4 writes to _cts
Microsoft.CodeAnalysis.Workspaces (4)
Utilities\CancellationSeries.cs (4)
38_cts = new CancellationTokenSource(); 78var priorSource = Volatile.Read(ref _cts); 81var candidate = Interlocked.CompareExchange(ref _cts, nextSource, priorSource); 116var source = Interlocked.Exchange(ref _cts, null);
2 references to _cts
Microsoft.CodeAnalysis.Workspaces (2)
Utilities\CancellationSeries.cs (2)
39_cts.Cancel(); 48=> _cts is { IsCancellationRequested: false };