4 writes to _activeTaskCount
MSBuild (4)
OutOfProcTaskHostNode.cs (4)
1052
Interlocked.Decrement(ref
_activeTaskCount
);
1062
Interlocked.Increment(ref
_activeTaskCount
);
1395
Interlocked.Increment(ref
_activeTaskCount
);
1495
Interlocked.Decrement(ref
_activeTaskCount
);
5 references to _activeTaskCount
MSBuild (5)
OutOfProcTaskHostNode.cs (5)
1174
ErrorUtilities.VerifyThrow(
_activeTaskCount
== 0,
1176
_activeTaskCount
);
1209
if (
_activeTaskCount
== 0 && _blockedTaskCount == 0)
1244
if (
_activeTaskCount
> 0)
1265
ErrorUtilities.VerifyThrow(
_activeTaskCount
== 0, "We should never have a task in the process of executing when we receive NodeBuildComplete.");