ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/Exchanger.java
(Generate patch)

Comparing jsr166/src/main/java/util/concurrent/Exchanger.java (file contents):
Revision 1.32 by dl, Sat Dec 10 20:09:28 2005 UTC vs.
Revision 1.33 by jsr166, Mon Dec 12 00:04:16 2005 UTC

# Line 312 | Line 312 | public class Exchanger<V> {
312                      }
313                      if (spins > 0)
314                          --spins;
315 <                    else if (!timed)
315 >                    else if (!timed)
316                          LockSupport.park();
317                      else if (nanos > spinForTimeoutThreshold)
318                          LockSupport.parkNanos(nanos);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines