Home | History | Annotate | Download | only in internal

Lines Matching defs:thread

29  * Thread that finalizes referents. All references should implement
38 * Google Collections, this thread would keep an indirect strong reference
59 * Starts the Finalizer thread. FinalizableReferenceQueue calls this method
63 * @param queue a reference queue that the thread will poll.
86 Thread thread = new Thread(finalizer);
87 thread.setName(Finalizer.class.getName());
88 thread.setDaemon(true);
92 inheritableThreadLocals.set(thread, null);
95 logger.log(Level.INFO, "Failed to clear thread local values inherited"
96 + " by reference finalizer thread.", t);
99 thread.start();
109 /** Constructs a new finalizer thread. */
204 = Thread.class.getDeclaredField("inheritableThreadLocals");
208 logger.log(Level.INFO, "Couldn't access Thread.inheritableThreadLocals."
209 + " Reference finalizer threads will inherit thread local"