When setting a Java thread to min priority I know it results in more scheduling time for fellow threads within the same JVM. I'd like to know if threads in other JVM processes will get more scheduling time as well?
In other words, does thread priority affects scheduling regardless of processes scopes?
I know OS might matter, so I'll say I care about Java6 on Linux mostly.