JDK-7011441 : ./jndi/ldap/Connection.java needs to avoid spurious wakeup
  • Type: Bug
  • Component: core-libs
  • Sub-Component: javax.naming
  • Affected Version: 6u22
  • Priority: P3
  • Status: Closed
  • Resolution: Fixed
  • OS: generic
  • CPU: generic
  • Submitted: 2011-01-11
  • Updated: 2016-06-13
  • Resolved: 2015-05-30
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 6 JDK 7 JDK 8 JDK 9
6u101Fixed 7u91Fixed 8u60Fixed 9 b68Fixed
Related Reports
Duplicate :  
Description
./jndi/ldap/Connection.java seems to need implementation(ex. "while" loop) to avoid spurious wakeup at the following source code portion in jdk6u22.

src/share/classes/com/sun/jndi/ldap/Connection.java

....
430                             // available
431                             ldr.wait(readTimeout);
432                             waited = true;
....