示例#1
0
        private void GetCupuNumberSpreadsPal(int count)
        {
            var x = 0L;

            for (int i = 0; i < count; i++)
            {
                x += Pal.GetCurrentCoreId();
                // Pal.FlushCurrentCpuId();
            }

            Assert.IsTrue(x >= 0, "Spreads: " + x);
        }