[cvs] / jsr166 / src / main / java / util / concurrent / SynchronousQueue.java Repository:
ViewVC logotype

Diff of /jsr166/src/main/java/util/concurrent/SynchronousQueue.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.59, Thu Aug 18 21:37:58 2005 UTC revision 1.60, Thu Aug 18 21:48:50 2005 UTC
# Line 164  Line 164 
164      static final int maxTimedSpins = (NCPUS < 2)? 0 : 32;      static final int maxTimedSpins = (NCPUS < 2)? 0 : 32;
165    
166      /**      /**
167       * The number of times to spin before blocking in untimed       * The number of times to spin before blocking in untimed waits.
168       * waits.  This is greater than timed value because untimed       * This is greater than timed value because untimed waits spin
169       * waits spin faster since they don't need to check times on       * faster since they don't need to check times on each spin.
      * each spin.  
170       */       */
171      static final int maxUntimedSpins = maxTimedSpins * 16;      static final int maxUntimedSpins = maxTimedSpins * 16;
172    

Legend:
Removed from v.1.59  
changed lines
  Added in v.1.60

Doug Lea
ViewVC Help
Powered by ViewVC 1.0.8