2 writes to _packetPump
Microsoft.Build (2)
BackEnd\Components\Communications\NodeEndpointInProc.cs (2)
356
_packetPump
= new Thread(PacketPumpProc);
401
_packetPump
= null;
8 references to _packetPump
Microsoft.Build (8)
BackEnd\Components\Communications\NodeEndpointInProc.cs (8)
350
ErrorUtilities.VerifyThrow(
_packetPump
== null, "packetPump != null");
368
_packetPump
.Name = "InProc Endpoint Packet Pump";
373
_packetPump
.CurrentCulture = _componentHost.BuildParameters.Culture;
374
_packetPump
.CurrentUICulture = _componentHost.BuildParameters.UICulture;
376
_packetPump
.Start();
387
ErrorUtilities.VerifyThrow(
_packetPump
!= null, "packetPump == null");
393
if (!
_packetPump
.Join((int)new TimeSpan(0, 0, BuildParameters.EndpointShutdownTimeout).TotalMilliseconds))
397
_packetPump
.Abort();