Possible Duplicate:
how to set CPU affinity of a particular pthread?
Is there a way in Linux to disable one core for all processes except one process? I would like to have one core reserved only and only for my process.
Expected behavior is as follows:
- Processes which will be spawned after my process, should not see this core and use the others.
- When my process is spawned, all processes which are utilizing this core, should be switched to other cores.
Yes, there is. You want to create two cpusets, one with your isolated CPU and the other with all the rest of the CPUs. Assign your special process to the isolated cpuset and all the rest of the processes to the other cpuset.
Here is a simple example script that will do it:
Now start your process and find out its PID and go:
If you want to revert these changes, just restart your system or do:
Here is the man page: http://www.kernel.org/doc/man-pages/online/pages/man7/cpuset.7.html
There are also more complicated shell wrappers that can help you automate this, such as cset. See: http://web.archive.org/web/20120428093126/http://www.suse.com/documentation/slerte_11/slerte_tutorial/data/slerte_tutorial.html