4 writes to _activeTaskCount
MSBuild (4)
OutOfProcTaskHostNode.cs (4)
1047
Interlocked.Decrement(ref
_activeTaskCount
);
1057
Interlocked.Increment(ref
_activeTaskCount
);
1388
Interlocked.Increment(ref
_activeTaskCount
);
1486
Interlocked.Decrement(ref
_activeTaskCount
);
5 references to _activeTaskCount
MSBuild (5)
OutOfProcTaskHostNode.cs (5)
1169
Assumed.Zero(
_activeTaskCount
, $"Why are we getting a TaskHostConfiguration packet while a task is actively executing? activeTaskCount={
_activeTaskCount
}");
1202
if (
_activeTaskCount
== 0 && _blockedTaskCount == 0)
1237
if (
_activeTaskCount
> 0)
1258
Assumed.Zero(
_activeTaskCount
, "We should never have a task in the process of executing when we receive NodeBuildComplete.");