Hello,
I have a Java process that's running on 8 CPU cores on FreeBSD 8.3-STABLE. I can assign the process to 5-7 CPU cores with:
When I did that another application's processes use those cores some times. For example: I see with
I want to see only the Java process on those cores and other applications shouldn't use those CPU cores (5-7).
What is the correct way to do that?
Thanks,
Regards
I have a Java process that's running on 8 CPU cores on FreeBSD 8.3-STABLE. I can assign the process to 5-7 CPU cores with:
cpuset -l 5-7 -p $javapid
When I did that another application's processes use those cores some times. For example: I see with
top
: sshd, httpd applications use cpu6, cpu5 some times. I want to see only the Java process on those cores and other applications shouldn't use those CPU cores (5-7).
What is the correct way to do that?
Thanks,
Regards