Author: robert
Date: 2008-01-08 00:48:28 +0000 (Tue, 08 Jan 2008)
New Revision: 16963
Modified:
trunk/freenet/src/freenet/io/xfer/BlockTransmitter.java
Log:
pow! there goes the unclaimedFIFO messages
Modified: trunk/freenet/src/freenet/io/xfer/BlockTransmitter.java
===================================================================
--- trunk/freenet/src/freenet/io/xfer/BlockTransmitter.java 2008-01-08
00:46:35 UTC (rev 16962)
+++ trunk/freenet/src/freenet/io/xfer/BlockTransmitter.java 2008-01-08
00:48:28 UTC (rev 16963)
@@ -263,7 +263,7 @@
synchronized(_senderThread) {
_unsent.addFirst(packetNo);
_sentPackets.setBit(packetNo.intValue(), false);
-
_senderThread.notify();
+
_senderThread.notifyAll();
}
}
}