如何控制.NET 2.0中的进程亲和力?

发布于 2024-08-26 05:58:15 字数 43 浏览 4 评论 0原文

如何控制.NET 2.0中的进程亲和力?我是.Net的新手。 请帮忙!

How to control process affinity in .NET 2.0 ? I am newbie in .Net.
please help !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

紫罗兰の梦幻 2024-09-02 05:58:15

一般来说,你不需要。抱歉,如果这不是您所期望的,但我到处做了很多服务器概述,但很少 - 真的很少 - 看到需要这样做。

如果必须的话,请查看 Process 类 - ProcessAffinity 属性。但首先要确保你必须这样做。

In general, you do not. Sorry if that is not what you expect, but I do a LOT of server overview here and there and rarely - really rarely - see a need for that.

If you ahve to, look at the Process class - the ProcessAffinity property. But really make sure you have to in the first place.

无人问我粥可暖 2024-09-02 05:58:15

使用 Process.ProcessorAffinity 属性。

// this will cause the process to run only on CPU 1
Process.ProcessorAffinity = new IntPtr(1 << 0);
// this will cause the process to run only on CPU 1+2
Process.ProcessorAffinity = new IntPtr(1 << 0 | 1 << 1);

Using the Process.ProcessorAffinity property.

// this will cause the process to run only on CPU 1
Process.ProcessorAffinity = new IntPtr(1 << 0);
// this will cause the process to run only on CPU 1+2
Process.ProcessorAffinity = new IntPtr(1 << 0 | 1 << 1);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文