1 write to slotsLowPri
System.ServiceModel.Internals (1)
System\Runtime\IOThreadScheduler.cs (1)
100this.slotsLowPri = new Slot[capacityLowPri];
7 references to slotsLowPri
System.ServiceModel.Internals (7)
System\Runtime\IOThreadScheduler.cs (7)
101Fx.Assert((this.slotsLowPri.Length & SlotMaskLowPri) == 0, "Low-priority capacity must be a power of two."); 179new IOThreadScheduler(Math.Min(this.slots.Length * 2, MaximumCapacity), this.slotsLowPri.Length); 231bool queued = this.slotsLowPri[slot >> Bits.HiShift & SlotMaskLowPri].TryEnqueueWorkItem( 237new IOThreadScheduler(this.slots.Length, Math.Min(this.slotsLowPri.Length * 2, MaximumCapacity)); 273this.slotsLowPri[slotLowPri & SlotMaskLowPri].DequeueWorkItem(out callback, out state); 347this.slotsLowPri[slotLowPri & SlotMaskLowPri].DequeueWorkItem(out callback, out state); 378return this.slotsLowPri.Length - 1;