I have a program that runs in a few threads. The main thread shares an object with the other threads and in the main I have a call to:
synchronized(obj){
You have a setPriority() method in the Thread class.
Check this javadoc.
Setting thread priority to maximum:
public static void main(String args[]) { Thread.currentThread().setPriority(Thread.MAX_PRIORITY); // Your main code. }