Is there a progamatic method to set CPU affinity for a process in c/c++ for the linux operating system.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You need to use For example, to run on CPUs 0 and 2 only:
( |
||||
|
|
Use sched_setaffinity at the process level, or pthread_attr_setaffinity_np for individual threads. |
|||
|
|
|
In short
Look in CPU Affinity for more details |
|||
|
|