ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/CountDownLatch.java
Revision 1.24 - (view) (download) (annotate) - [select for diffs]
Sun Feb 8 15:35:10 2004 UTC (20 years, 3 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_PFD
Changes since 1.23: +1 -1 lines
Diff to previous 1.23
Wording cleanups; Improve SynchronousQueue serialization and fairness support

Revision 1.23 - (view) (download) (annotate) - [select for diffs]
Sun Jan 11 16:02:17 2004 UTC (20 years, 4 months ago) by dl
Branch: MAIN
Changes since 1.22: +1 -1 lines
Diff to previous 1.22
Simplify/shorten AQS method names

Revision 1.22 - (view) (download) (annotate) - [select for diffs]
Sat Jan 10 20:37:03 2004 UTC (20 years, 4 months ago) by dl
Branch: MAIN
Changes since 1.21: +5 -2 lines
Diff to previous 1.21
Document toString

Revision 1.21 - (view) (download) (annotate) - [select for diffs]
Sat Jan 10 01:41:44 2004 UTC (20 years, 4 months ago) by dl
Branch: MAIN
Changes since 1.20: +9 -0 lines
Diff to previous 1.20
Added toString

Revision 1.20 - (view) (download) (annotate) - [select for diffs]
Fri Jan 9 14:45:17 2004 UTC (20 years, 4 months ago) by dl
Branch: MAIN
Changes since 1.19: +1 -1 lines
Diff to previous 1.19
Cosmetics

Revision 1.19 - (view) (download) (annotate) - [select for diffs]
Wed Jan 7 01:00:50 2004 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.18: +4 -3 lines
Diff to previous 1.18
replace isFirst param with isFirst method

Revision 1.18 - (view) (download) (annotate) - [select for diffs]
Fri Jan 2 21:02:31 2004 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.17: +2 -2 lines
Diff to previous 1.17
Avoid timeout problems in fair modes; improve AQS method names

Revision 1.17 - (view) (download) (annotate) - [select for diffs]
Wed Dec 31 21:30:00 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.16: +15 -8 lines
Diff to previous 1.16
AQS API improvements

Revision 1.16 - (view) (download) (annotate) - [select for diffs]
Tue Dec 30 15:47:48 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.15: +30 -46 lines
Diff to previous 1.15
Avoid cache threashing

Revision 1.15 - (view) (download) (annotate) - [select for diffs]
Sat Dec 27 17:19:03 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.14: +1 -1 lines
Diff to previous 1.14
Adapt to AbstractQueuedSynchronizer

Revision 1.14 - (view) (download) (annotate) - [select for diffs]
Tue Dec 23 19:38:09 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.13: +4 -0 lines
Diff to previous 1.13
cache finals across volatiles; avoid readResolve; doc improvments; timed invokeAll interleaves

Revision 1.13 - (view) (download) (annotate) - [select for diffs]
Mon Nov 3 00:11:46 2003 UTC (20 years, 7 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_DEC9_POST_ES_SUBMIT, JSR166_DEC9_PRE_ES_SUBMIT, JSR166_NOV3_FREEZE
Changes since 1.12: +3 -2 lines
Diff to previous 1.12
Fixed typo in example

Revision 1.12 - (view) (download) (annotate) - [select for diffs]
Sat Oct 11 15:37:31 2003 UTC (20 years, 7 months ago) by dl
Branch: MAIN
Changes since 1.11: +1 -1 lines
Diff to previous 1.11
Redeclare some Conditions as ReentrantLock.ConditionObjects

Revision 1.11 - (view) (download) (annotate) - [select for diffs]
Sun Aug 31 13:33:13 2003 UTC (20 years, 9 months ago) by dl
Branch: MAIN
Changes since 1.10: +0 -3 lines
Diff to previous 1.10
Removed non-standard tags and misc javadoc cleanup

Revision 1.10 - (view) (download) (annotate) - [select for diffs]
Tue Aug 26 00:09:18 2003 UTC (20 years, 9 months ago) by dholmes
Branch: MAIN
Changes since 1.9: +3 -3 lines
Diff to previous 1.9
In response to Eamonn's comment that "best effort lower bound" is not
defined for waiting times, all such references have been deleted. The
preceding text makes it clear that the time must elapse before the
method will return, and trying to say anything about the maximum waiting
time is pointless. We can still say something to this effect in the package
docs if we want.

Revision 1.9 - (view) (download) (annotate) - [select for diffs]
Mon Aug 25 22:28:11 2003 UTC (20 years, 9 months ago) by dholmes
Branch: MAIN
Changes since 1.8: +9 -9 lines
Diff to previous 1.8
Fixed references to wait vs. await
Removed leading spaces from <li> elements

Revision 1.8 - (view) (download) (annotate) - [select for diffs]
Sat Aug 23 19:46:15 2003 UTC (20 years, 9 months ago) by tim
Branch: MAIN
Changes since 1.7: +3 -3 lines
Diff to previous 1.7
Remove alias of wait for await.

Revision 1.7 - (view) (download) (annotate) - [select for diffs]
Fri Aug 8 20:05:07 2003 UTC (20 years, 9 months ago) by tim
Branch: MAIN
Changes since 1.6: +7 -13 lines
Diff to previous 1.6
Scrunched catch, finally, else clauses.

Revision 1.6 - (view) (download) (annotate) - [select for diffs]
Tue Jul 8 00:46:33 2003 UTC (20 years, 11 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_CR1, JSR166_PRELIMINARY_TEST_RELEASE_2
Changes since 1.5: +3 -2 lines
Diff to previous 1.5
Locks in subpackage; fairness params added

Revision 1.5 - (view) (download) (annotate) - [select for diffs]
Tue Jun 24 14:34:47 2003 UTC (20 years, 11 months ago) by dl
Branch: MAIN
Changes since 1.4: +19 -17 lines
Diff to previous 1.4
Added missing javadoc tags; minor reformatting

Revision 1.4 - (view) (download) (annotate) - [select for diffs]
Mon Jun 23 02:26:16 2003 UTC (20 years, 11 months ago) by brian
Branch: MAIN
Changes since 1.3: +47 -8 lines
Diff to previous 1.3
Partial javadoc pass

Revision 1.3 - (view) (download) (annotate) - [select for diffs]
Sat Jun 7 18:20:20 2003 UTC (21 years ago) by dl
Branch: MAIN
CVS Tags: JSR166_PRELIMINARY_TEST_RELEASE_1
Changes since 1.2: +13 -11 lines
Diff to previous 1.2
Misc documentation updates

Revision 1.2 - (view) (download) (annotate) - [select for diffs]
Tue May 27 18:14:39 2003 UTC (21 years ago) by dl
Branch: MAIN
CVS Tags: JSR166_PRERELEASE_0_1
Changes since 1.1: +59 -8 lines
Diff to previous 1.1
re-check-in initial implementations

Revision 1.1 - (view) (download) (annotate) - [select for diffs]
Wed May 14 21:30:46 2003 UTC (21 years ago) by tim
Branch: MAIN
Moved main source rooted at . to ./src/main
Moved test source rooted at ./etc/testcases to ./src/test

Convenience Links

Links to HEAD: (view) (download) (annotate) Links to JSR166_PFD: (view) (download) (annotate)

Compare Revisions

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, select a symbolic revision name using the selection box, or choose 'Use Text Field' and enter a numeric revision.

  Diffs between and
  Type of Diff should be a