src/java.corba/share/classes/com/sun/corba/se/impl/javax/rmi/CORBA/Util.java

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

*** 749,764 **** return in.read_value(); } } } ! class KeepAlive extends sun.misc.ManagedLocalsThread { boolean quit = false; public KeepAlive () { setDaemon(false); } public synchronized void run () { --- 749,765 ---- return in.read_value(); } } } ! class KeepAlive extends Thread { boolean quit = false; public KeepAlive () { + super(null, null, "Servant-KeepAlive-Thread", 0, false); setDaemon(false); } public synchronized void run () {