示例#1
0
 static LinkSession()
 {
     handlePool = new RangedIntPool(1, 65536, true);  // [1, 65536]
 }
示例#2
0
 static WaitHandlePool()
 {
     pool = new RangedIntPool(1, Config.Coroutine.MaxWaitHandles, true);
 }
示例#3
0
文件: Link.cs 项目: jaykang920/x2clr
 static HandlePool()
 {
     pool = new RangedIntPool(1, Config.MaxLinkHandles, true);
 }