コード例 #1
0
ファイル: LinkSession.cs プロジェクト: gitter-badger/x2clr
 static LinkSession()
 {
     handlePool = new RangedIntPool(1, 65536, true);  // [1, 65536]
 }
コード例 #2
0
ファイル: WaitHandlePool.cs プロジェクト: jaykang920/x2clr
 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);
 }