Esempio n. 1
0
 public ThreadPoolFiber(FiberPool fp, int fiberidSeed)
 {
     AttachFiberPool(fp);
     this.fiberid = Math.Abs(fiberidSeed) % fp.GetWorkerCount;
 }
Esempio n. 2
0
 internal void AttachFiberPool(FiberPool fp)
 {
     this.fp = fp;
 }