src/java.corba/share/classes/com/sun/corba/se/impl/orb/ORBImpl.java

Print this page
rev 757 : 8148863: Remove sun.misc.ManagedLocalsThread from corba
Reviewed-by: alanb, coffeys

*** 689,699 **** // Invoke the send_deferred on each new Request for (int i = 0; i < req.length; i++) { AsynchInvoke invokeObject = new AsynchInvoke( this, (com.sun.corba.se.impl.corba.RequestImpl)req[i], true); ! new sun.misc.ManagedLocalsThread(invokeObject).start(); } } /** * Find out if any of the deferred invocations have a response yet. --- 689,699 ---- // Invoke the send_deferred on each new Request for (int i = 0; i < req.length; i++) { AsynchInvoke invokeObject = new AsynchInvoke( this, (com.sun.corba.se.impl.corba.RequestImpl)req[i], true); ! new Thread(null, invokeObject, "ORB-Request-Thread", 0, false).start(); } } /** * Find out if any of the deferred invocations have a response yet.