예제 #1
0
 /// <summary>
 /// Creates a new <see cref="PriorityWaitQueue"/> instance.
 /// </summary>
 protected internal PriorityWaitQueue()
 {
     for (int i = 0; i < cells_.Length; ++i)
     {
         cells_[i] = new FIFOSemaphore.FIFOWaitQueue();
     }
 }
예제 #2
0
 /// <summary>
 /// Creates a new <see cref="PriorityWaitQueue"/> instance.
 /// </summary>
 protected internal PriorityWaitQueue()
 {
     for (int i = 0; i < cells_.Length; ++i)
         cells_[i] = new FIFOSemaphore.FIFOWaitQueue();
 }