-
Bug
-
Resolution: Fixed
-
P4
-
5.0u8
-
b06
-
generic
-
generic
-
Not verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2152540 | OpenJDK6 | Martin Buchholz | P3 | Closed | Not an Issue |
There's a double-read of a volatile in sun/misc/AtomicLongCSImpl.java. The double-read allows the increment function to read a value X on the first read, read Y on the 2nd read, have the value X restored before the CAS, then CAS down Y+1 over X (instead of X+1). Being synchronized doesn't help here because the set'er function is not synchronized. In any case the whole point of being the 'CS' implementation is that you do not need to synchronize.
See suggestd fix for the code change suggested for fixing this problem.
See suggestd fix for the code change suggested for fixing this problem.
- backported by
-
JDK-2152540 Remove sun.misc.AtomicLong
-
- Closed
-