4 writes to _activeTaskCount
MSBuild (4)
OutOfProcTaskHostNode.cs (4)
1049
Interlocked.Decrement(ref
_activeTaskCount
);
1059
Interlocked.Increment(ref
_activeTaskCount
);
1391
Interlocked.Increment(ref
_activeTaskCount
);
1491
Interlocked.Decrement(ref
_activeTaskCount
);
5 references to _activeTaskCount
MSBuild (5)
OutOfProcTaskHostNode.cs (5)
1171
ErrorUtilities.VerifyThrow(
_activeTaskCount
== 0,
1172
$"Why are we getting a TaskHostConfiguration packet while a task is actively executing? activeTaskCount={
_activeTaskCount
}");
1205
if (
_activeTaskCount
== 0 && _blockedTaskCount == 0)
1240
if (
_activeTaskCount
> 0)
1261
ErrorUtilities.VerifyThrow(
_activeTaskCount
== 0, "We should never have a task in the process of executing when we receive NodeBuildComplete.");