예제 #1
0
 public static void ResetOperationPool(bool highCq)
 {
     ThreadStaticPool <Operation> .ReturnPool(highCq? 1 : 0);
 }
예제 #2
0
파일: OperandHelper.cs 프로젝트: derparb/h
        public static void ResetOperandPool(bool highCq)
        {
            ThreadStaticPool <Operand> .ReturnPool(highCq? 1 : 0);

            ThreadStaticPool <MemoryOperand> .ReturnPool(highCq? 1 : 0);
        }