如何限制进程使用的核心数?

时间:2014-06-25 11:59:21

标签: c# process cpu-cores

我希望我的程序打开一些其他进程,项目的一个要求是每个打开的进程只能在一个核心上运行。

我知道可以使用processorAffinity选择特定的处理器,但是可以设置最大内核数(在我的情况下是1)吗?

1 个答案:

答案 0 :(得分:1)

你必须尝试使用​​ProcessThread.ProcessorAffinity

using System;
using System.Diagnostics;

namespace ProcessThreadIdealProcessor
{
    class Program
    {
        static void Main(string[] args)
        {
            // Make sure there is an instance of notepad running.
            Process[] notepads = Process.GetProcessesByName("notepad");
            if (notepads.Length == 0)
                Process.Start("notepad");
            ProcessThreadCollection threads;
            //Process[] notepads; 
            // Retrieve the Notepad processes.
            notepads = Process.GetProcessesByName("Notepad");
            // Get the ProcessThread collection for the first instance
            threads = notepads[0].Threads;
            // Set the properties on the first ProcessThread in the collection
            threads[0].IdealProcessor = 0;
            threads[0].ProcessorAffinity = (IntPtr)1;
        }
    }
}