Author: toad
Date: 2007-08-11 19:31:37 +0000 (Sat, 11 Aug 2007)
New Revision: 14627
Modified:
trunk/freenet/src/freenet/support/PooledExecutor.java
Log:
Clearer thread name
Modified: trunk/freenet/src/freenet/support/PooledExecutor.java
===================================================================
--- trunk/freenet/src/freenet/support/PooledExecutor.java 2007-08-11
19:28:23 UTC (rev 14626)
+++ trunk/freenet/src/freenet/support/PooledExecutor.java 2007-08-11
19:31:37 UTC (rev 14627)
@@ -28,7 +28,7 @@
t = (MyThread)
waitingThreads.remove(waitingThreads.size()-1);
} else {
// Will be coalesced by thread count
listings if we use "@" or "for"
- t = new MyThread("Pooled thread
@"+(threadCounter++));
+ t = new MyThread("Pooled thread
awaiting work @"+(threadCounter++));
t.setDaemon(true);
mustStart = true;
}