src/java.base/share/classes/sun/misc/RequestProcessor.java
Print this page
*** 75,85 ****
* clients to deliberately control the context in which the request
* processor thread is created
*/
public static synchronized void startProcessing() {
if (dispatcher == null) {
! dispatcher = new ManagedLocalsThread(new RequestProcessor(), "Request Processor");
dispatcher.setPriority(Thread.NORM_PRIORITY + 2);
dispatcher.start();
}
}
--- 75,85 ----
* clients to deliberately control the context in which the request
* processor thread is created
*/
public static synchronized void startProcessing() {
if (dispatcher == null) {
! dispatcher = new Thread(null, new RequestProcessor(), "Request Processor", 0, false);
dispatcher.setPriority(Thread.NORM_PRIORITY + 2);
dispatcher.start();
}
}