2 writes to _packetPump
Microsoft.Build (2)
BackEnd\Components\Communications\NodeEndpointInProc.cs (2)
364
_packetPump
= new Thread(PacketPumpProc);
409
_packetPump
= null;
8 references to _packetPump
Microsoft.Build (8)
BackEnd\Components\Communications\NodeEndpointInProc.cs (8)
358
ErrorUtilities.VerifyThrow(
_packetPump
== null, "packetPump != null");
376
_packetPump
.Name = "InProc Endpoint Packet Pump";
381
_packetPump
.CurrentCulture = _componentHost.BuildParameters.Culture;
382
_packetPump
.CurrentUICulture = _componentHost.BuildParameters.UICulture;
384
_packetPump
.Start();
395
ErrorUtilities.VerifyThrow(
_packetPump
!= null, "packetPump == null");
401
if (!
_packetPump
.Join((int)new TimeSpan(0, 0, BuildParameters.EndpointShutdownTimeout).TotalMilliseconds))
405
_packetPump
.Abort();