Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8261036: Reduce classes loaded by CleanerFactory initialization #2380

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -63,7 +63,7 @@ public static Thread newThread(Runnable target) {
* set to the system class loader, inheriting the current thread priority
*/
public static Thread newThread(String name, Runnable target) {
return newThread(name, target, currentThread().getPriority());
return newThread(name, target, -1);
}
/**
* Returns a new InnocuousThread with its context class loader
@@ -97,7 +97,7 @@ public static Thread newSystemThread(Runnable target) {
* inheriting the current thread priority.
*/
public static Thread newSystemThread(String name, Runnable target) {
return newSystemThread(name, target, currentThread().getPriority());
return newSystemThread(name, target, -1);
}

/**
@@ -120,7 +120,7 @@ public Thread run() {
private static Thread createThread(String name, Runnable target, ClassLoader loader, int priority) {
Thread t = new InnocuousThread(INNOCUOUSTHREADGROUP,
target, name, loader);
if (t.getPriority() != priority) {
if (priority >= 0) {
t.setPriority(priority);
}
return t;