In Linux, I have a Java program running.
I using jstack [pid] to thread dump my Java app. And detect my processID.
Now I using taskset to assign this process for specific CPU core, but beside that, I can assign to another process into that core also, but I don't want it.
How can I lock that core after I assign my process. Thanks for all!