Restrict a process to run on a certain CPU.

Source: Internet
Author: User

You can call GetSystemInfo to check the number of CPUs, and then call:

 

BOOL WINAPI SetProcessAffinityMask(   __in          HANDLE hProcess,   __in          DWORD_PTR dwProcessAffinityMask ); BOOL WINAPI SetProcessAffinityMask(  __in          HANDLE hProcess,  __in          DWORD_PTR dwProcessAffinityMask);

The first parameter indicates the process to be set, and the second parameter is a mask, which indicates the CPU on which the operation can be performed. For example, set 5 (101) to run on the first and third CPUs.

 


There are several other related functions:

BOOL WINAPI GetProcessAffinityMask(   __in          HANDLE hProcess,   __out         PDWORD_PTR lpProcessAffinityMask,   __out         PDWORD_PTR lpSystemAffinityMask ); BOOL WINAPI GetProcessAffinityMask(  __in          HANDLE hProcess,  __out         PDWORD_PTR lpProcessAffinityMask,  __out         PDWORD_PTR lpSystemAffinityMask);

DWORD_PTR WINAPI SetThreadAffinityMask(   __in          HANDLE hThread,   __in          DWORD_PTR dwThreadAffinityMask ); DWORD_PTR WINAPI SetThreadAffinityMask(  __in          HANDLE hThread,  __in          DWORD_PTR dwThreadAffinityMask); 

 

 


 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.