Is there a progamatic method to set CPU affinity for a process in c/c++ for the linux operating system.
|
feedback
|
|
You need to use For example, to run on CPUs 0 and 2 only:
( | |||
|
feedback
|
|
Use sched_setaffinity at the process level, or pthread_attr_setaffinity_np for individual threads. | |||
|
feedback
|
|
In short
Look in CPU Affinity for more details | |||
|
feedback
|