-
Bug
-
Resolution: Fixed
-
P3
-
5.0, 6
-
b55
-
generic, x86
-
generic, windows_xp
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2130116 | 5.0u7 | Martin Buchholz | P3 | Resolved | Fixed | b01 |
Doug Lea writes:
When unexpired elements remain, DelayQueue.poll(timeout, unit)
may busy-wait past the given timeout until one expires.
A test case is in src/test/tck/DelayQueueTest. This
hangs (for about 293 years) rather than returning in a few
milliseconds. (A stand-alone test isn't worth writing).
public void testTimedPollDelayed() {
DelayQueue q = new DelayQueue();
q.add(new NanoDelay(Long.MAX_VALUE));
try {
assertNull(q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
} catch (Exception ex) {
unexpectedException();
}
}
When unexpired elements remain, DelayQueue.poll(timeout, unit)
may busy-wait past the given timeout until one expires.
A test case is in src/test/tck/DelayQueueTest. This
hangs (for about 293 years) rather than returning in a few
milliseconds. (A stand-alone test isn't worth writing).
public void testTimedPollDelayed() {
DelayQueue q = new DelayQueue();
q.add(new NanoDelay(Long.MAX_VALUE));
try {
assertNull(q.poll(SHORT_DELAY_MS, TimeUnit.MILLISECONDS));
} catch (Exception ex) {
unexpectedException();
}
}
- backported by
-
JDK-2130116 DelayQueue.poll(timeout, unit) can spin past given timeout
-
- Resolved
-
- duplicates
-
JDK-6432050 DelayQueue leaks memory in poll(long, TimeUnit)
-
- Closed
-