Author: toad
Date: 2008-03-07 18:56:57 +0000 (Fri, 07 Mar 2008)
New Revision: 18415
Modified:
trunk/freenet/src/freenet/support/SerialExecutor.java
Log:
DOH! Forgot to notify!
Modified: trunk/freenet/src/freenet/support/SerialExecutor.java
===================================================================
--- trunk/freenet/src/freenet/support/SerialExecutor.java 2008-03-07
17:37:18 UTC (rev 18414)
+++ trunk/freenet/src/freenet/support/SerialExecutor.java 2008-03-07
18:56:57 UTC (rev 18415)
@@ -57,12 +57,14 @@
public void execute(Runnable job, String jobName) {
synchronized(jobs) {
jobs.addLast(job);
+ jobs.notifyAll();
}
}
public void execute(Runnable job, String jobName, boolean fromTicker) {
synchronized(jobs) {
jobs.addLast(job);
+ jobs.notifyAll();
}
}