src/java.base/share/classes/sun/misc/RequestProcessor.java

Print this page

        

@@ -75,11 +75,11 @@
      * 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 = new Thread(null, new RequestProcessor(), "Request Processor", 0, false);
             dispatcher.setPriority(Thread.NORM_PRIORITY + 2);
             dispatcher.start();
         }
     }