Update of /cvsroot/jrobin/src/org/jrobin/core
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6628/org/jrobin/core
Modified Files:
RrdDbPool.java
Log Message:
almost of no importance
Index: RrdDbPool.java
===================================================================
RCS file: /cvsroot/jrobin/src/org/jrobin/core/RrdDbPool.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** RrdDbPool.java 1 Sep 2004 07:59:54 -0000 1.13
--- RrdDbPool.java 23 Sep 2004 08:45:51 -0000 1.14
***************
*** 101,104 ****
--- 101,105 ----
*/
public class RrdDbPool implements Runnable {
+ static final String GC_THREAD_NAME = "RrdDbPool GC thread";
private static RrdDbPool ourInstance;
private static final boolean DEBUG = false;
***************
*** 148,152 ****
private void startGarbageCollector() {
! Thread gcThread = new Thread(this);
gcThread.setPriority(GC_THREAD_PRIORITY);
gcThread.setDaemon(true);
--- 149,153 ----
private void startGarbageCollector() {
! Thread gcThread = new Thread(this, GC_THREAD_NAME);
gcThread.setPriority(GC_THREAD_PRIORITY);
gcThread.setDaemon(true);
|