Searched refs:newPriority (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/
H A DThread.java1084 * the specified <code>newPriority</code> and the maximum permitted
1087 * @param newPriority priority to set this thread to
1100 public final void setPriority(int newPriority) { argument
1103 if (newPriority > MAX_PRIORITY || newPriority < MIN_PRIORITY) {
1107 if (newPriority > g.getMaxPriority()) {
1108 newPriority = g.getMaxPriority();
1110 setPriority0(priority = newPriority);
2031 private native void setPriority0(int newPriority); argument

Completed in 3886 milliseconds