ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/FutureTask.java
Revision 1.121 - (view) (download) (annotate) - [select for diffs]
Fri May 6 16:03:05 2022 UTC (2 years ago) by dl
Branch: MAIN
CVS Tags: HEAD
Changes since 1.120: +53 -0 lines
Diff to previous 1.120
sync with openjdk

Revision 1.120 - (view) (download) (annotate) - [select for diffs]
Sun Mar 11 18:00:06 2018 UTC (6 years, 2 months ago) by jsr166
Branch: MAIN
Changes since 1.119: +1 -1 lines
Diff to previous 1.119
prefer throwing ExceptionInInitializerError from <clinit> to throwing Error

Revision 1.119 - (view) (download) (annotate) - [select for diffs]
Wed Aug 16 17:18:34 2017 UTC (6 years, 9 months ago) by jsr166
Branch: MAIN
Changes since 1.118: +35 -0 lines
Diff to previous 1.118
8186265: Make toString() methods of "task" objects more useful

Revision 1.118 - (view) (download) (annotate) - [select for diffs]
Sat Sep 10 04:06:51 2016 UTC (7 years, 8 months ago) by jsr166
Branch: MAIN
Changes since 1.117: +2 -2 lines
Diff to previous 1.117
incorporate upstream VarHandle changes

Revision 1.117 - (view) (download) (annotate) - [select for diffs]
Fri Jun 17 13:03:45 2016 UTC (7 years, 11 months ago) by dl
Branch: MAIN
Changes since 1.116: +2 -2 lines
Diff to previous 1.116
Use new CAS variants when applicable

Revision 1.116 - (view) (download) (annotate) - [select for diffs]
Thu Jun 2 13:40:42 2016 UTC (7 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.115: +1 -1 lines
Diff to previous 1.115
whitespace

Revision 1.115 - (view) (download) (annotate) - [select for diffs]
Thu Jun 2 13:16:27 2016 UTC (7 years, 11 months ago) by dl
Branch: MAIN
Changes since 1.114: +23 -29 lines
Diff to previous 1.114
VarHandles conversion; pass 1

Revision 1.114 - (view) (download) (annotate) - [select for diffs]
Tue Apr 19 22:55:30 2016 UTC (8 years, 1 month ago) by jsr166
Branch: MAIN
Changes since 1.113: +4 -4 lines
Diff to previous 1.113
s~\bsun\.(misc\.Unsafe)\b~jdk.internal.$1~g;
s~\bputOrdered([A-Za-z]+)\b~put${1}Release~g

Revision 1.113 - (view) (download) (annotate) - [select for diffs]
Sat Oct 3 18:17:51 2015 UTC (8 years, 7 months ago) by jsr166
Branch: MAIN
Changes since 1.112: +1 -1 lines
Diff to previous 1.112
compare longs against 0L, not 0

Revision 1.112 - (view) (download) (annotate) - [select for diffs]
Mon Mar 23 18:48:19 2015 UTC (9 years, 1 month ago) by jsr166
Branch: MAIN
Changes since 1.111: +4 -0 lines
Diff to previous 1.111
JDK-8074773: Reduce the risk of rare disastrous classloading in first call to LockSupport.park

Revision 1.111 - (view) (download) (annotate) - [select for diffs]
Thu Mar 5 00:32:52 2015 UTC (9 years, 2 months ago) by jsr166
Branch: MAIN
Changes since 1.110: +7 -6 lines
Diff to previous 1.110
fix JDK-8073704

Revision 1.110 - (view) (download) (annotate) - [select for diffs]
Sun Jan 4 09:15:11 2015 UTC (9 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.109: +7 -6 lines
Diff to previous 1.109
standardize Unsafe mechanics; slightly smaller bytecode

Revision 1.109 - (view) (download) (annotate) - [select for diffs]
Sun Jan 4 01:06:15 2015 UTC (9 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.108: +1 -1 lines
Diff to previous 1.108
use ReflectiveOperationException for Unsafe mechanics

Revision 1.108 - (view) (download) (annotate) - [select for diffs]
Wed Dec 31 07:54:14 2014 UTC (9 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.107: +1 -0 lines
Diff to previous 1.107
standardize import statement order

Revision 1.107 - (view) (download) (annotate) - [select for diffs]
Sat Nov 1 18:46:42 2014 UTC (9 years, 6 months ago) by jsr166
Branch: MAIN
Changes since 1.106: +3 -1 lines
Diff to previous 1.106
nanoTime may be slow; recheck before parking

Revision 1.106 - (view) (download) (annotate) - [select for diffs]
Fri Aug 22 03:30:56 2014 UTC (9 years, 8 months ago) by jsr166
Branch: MAIN
Changes since 1.105: +26 -7 lines
Diff to previous 1.105
Fix underflow when timeout = Long.MIN_VALUE

Revision 1.105 - (view) (download) (annotate) - [select for diffs]
Thu Aug 21 01:56:10 2014 UTC (9 years, 9 months ago) by jsr166
Branch: MAIN
Changes since 1.104: +1 -1 lines
Diff to previous 1.104
javadoc clarification

Revision 1.104 - (view) (download) (annotate) - [select for diffs]
Mon Jul 21 05:22:06 2014 UTC (9 years, 10 months ago) by jsr166
Branch: MAIN
Changes since 1.103: +20 -26 lines
Diff to previous 1.103
use new coding style for Unsafe operations

Revision 1.103 - (view) (download) (annotate) - [select for diffs]
Wed May 15 02:39:59 2013 UTC (11 years ago) by jsr166
Branch: MAIN
Changes since 1.102: +1 -1 lines
Diff to previous 1.102
consistent use of "@return {@code true}"

Revision 1.102 - (view) (download) (annotate) - [select for diffs]
Sun Dec 16 18:52:27 2012 UTC (11 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.101: +14 -13 lines
Diff to previous 1.101
cancel(true) should take possible SecurityException on interrupt() into account

Revision 1.101 - (view) (download) (annotate) - [select for diffs]
Fri Dec 14 16:33:42 2012 UTC (11 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.100: +1 -1 lines
Diff to previous 1.100
whitespace

Revision 1.100 - (view) (download) (annotate) - [select for diffs]
Fri Dec 14 12:29:51 2012 UTC (11 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.99: +7 -4 lines
Diff to previous 1.99
Guard against security exceptions

Revision 1.99 - (view) (download) (annotate) - [select for diffs]
Tue Dec 20 01:03:46 2011 UTC (12 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.98: +3 -4 lines
Diff to previous 1.98
s/lastTime/deadline/g

Revision 1.98 - (view) (download) (annotate) - [select for diffs]
Fri Dec 2 15:47:22 2011 UTC (12 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.97: +3 -4 lines
Diff to previous 1.97
avoid introducing locals just for warning suppression

Revision 1.97 - (view) (download) (annotate) - [select for diffs]
Wed Nov 16 18:24:14 2011 UTC (12 years, 6 months ago) by dl
Branch: MAIN
Changes since 1.96: +2 -0 lines
Diff to previous 1.96
Don't time out if detectably completing

Revision 1.96 - (view) (download) (annotate) - [select for diffs]
Thu Jun 30 15:32:21 2011 UTC (12 years, 10 months ago) by jsr166
Branch: MAIN
Changes since 1.95: +3 -3 lines
Diff to previous 1.95
remove dead store

Revision 1.95 - (view) (download) (annotate) - [select for diffs]
Mon Jun 20 06:48:56 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.94: +9 -4 lines
Diff to previous 1.94
stop trying to clear cancellation interrupt

Revision 1.94 - (view) (download) (annotate) - [select for diffs]
Mon Jun 20 05:51:28 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.93: +3 -2 lines
Diff to previous 1.93
clarify comment for Thread.interrupted

Revision 1.93 - (view) (download) (annotate) - [select for diffs]
Mon Jun 20 05:35:44 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.92: +8 -0 lines
Diff to previous 1.92
document the tricky order dependencies

Revision 1.92 - (view) (download) (annotate) - [select for diffs]
Mon Jun 20 05:23:56 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.91: +12 -6 lines
Diff to previous 1.91
avoid return inside try-finally

Revision 1.91 - (view) (download) (annotate) - [select for diffs]
Sun Jun 19 16:00:03 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.90: +3 -1 lines
Diff to previous 1.90
coding style

Revision 1.90 - (view) (download) (annotate) - [select for diffs]
Sun Jun 19 15:50:17 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.89: +1 -1 lines
Diff to previous 1.89
tighten comment

Revision 1.89 - (view) (download) (annotate) - [select for diffs]
Sun Jun 19 15:43:14 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.88: +2 -2 lines
Diff to previous 1.88
comment out assert statements

Revision 1.88 - (view) (download) (annotate) - [select for diffs]
Sun Jun 19 07:57:06 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.87: +4 -2 lines
Diff to previous 1.87
javac warning suppression

Revision 1.87 - (view) (download) (annotate) - [select for diffs]
Sun Jun 19 07:46:18 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.86: +19 -19 lines
Diff to previous 1.86
use try-finally to reset runner back to null; set/setException may throw

Revision 1.86 - (view) (download) (annotate) - [select for diffs]
Sun Jun 19 06:06:24 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.85: +22 -10 lines
Diff to previous 1.85
refactor into handlePossibleCancellationInterrupt

Revision 1.85 - (view) (download) (annotate) - [select for diffs]
Sun Jun 19 03:21:58 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.84: +7 -6 lines
Diff to previous 1.84
null callable only in finishCompletion

Revision 1.84 - (view) (download) (annotate) - [select for diffs]
Sat Jun 18 22:24:25 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.83: +1 -1 lines
Diff to previous 1.83
whitespace

Revision 1.83 - (view) (download) (annotate) - [select for diffs]
Sat Jun 18 20:24:06 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.82: +1 -1 lines
Diff to previous 1.82
coding style

Revision 1.82 - (view) (download) (annotate) - [select for diffs]
Sat Jun 18 20:22:25 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.81: +3 -2 lines
Diff to previous 1.81
only call TimeUnit.toNanos if value needed

Revision 1.81 - (view) (download) (annotate) - [select for diffs]
Sat Jun 18 18:31:52 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.80: +21 -21 lines
Diff to previous 1.80
removeWaiters does only one traversal in the common case

Revision 1.80 - (view) (download) (annotate) - [select for diffs]
Sat Jun 18 15:20:30 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.79: +1 -2 lines
Diff to previous 1.79
small javadoc tidying

Revision 1.79 - (view) (download) (annotate) - [select for diffs]
Sat Jun 18 14:39:07 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.78: +2 -2 lines
Diff to previous 1.78
very small javadoc improvement

Revision 1.78 - (view) (download) (annotate) - [select for diffs]
Sat Jun 18 13:14:55 2011 UTC (12 years, 11 months ago) by dl
Branch: MAIN
Changes since 1.77: +41 -50 lines
Diff to previous 1.77
refactor out setCompletion

Revision 1.77 - (view) (download) (annotate) - [select for diffs]
Sat Jun 18 11:34:54 2011 UTC (12 years, 11 months ago) by dl
Branch: MAIN
Changes since 1.76: +46 -44 lines
Diff to previous 1.76
Null out callable after use

Revision 1.76 - (view) (download) (annotate) - [select for diffs]
Sat Jun 18 10:39:05 2011 UTC (12 years, 11 months ago) by dl
Branch: MAIN
Changes since 1.75: +15 -14 lines
Diff to previous 1.75
Improve removeWaiter

Revision 1.75 - (view) (download) (annotate) - [select for diffs]
Sat Jun 18 01:38:51 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.74: +1 -3 lines
Diff to previous 1.74
coding style

Revision 1.74 - (view) (download) (annotate) - [select for diffs]
Sat Jun 18 01:25:18 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.73: +1 -1 lines
Diff to previous 1.73
fix a bug in linked list traversal code

Revision 1.73 - (view) (download) (annotate) - [select for diffs]
Fri Jun 17 23:52:54 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.72: +16 -16 lines
Diff to previous 1.72
s/UNDECIDED/NEW/

Revision 1.72 - (view) (download) (annotate) - [select for diffs]
Fri Jun 17 23:31:33 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.71: +1 -0 lines
Diff to previous 1.71
document missing state transition

Revision 1.71 - (view) (download) (annotate) - [select for diffs]
Fri Jun 17 23:29:40 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.70: +10 -3 lines
Diff to previous 1.70
fix race causing interrupt to not be delivered

Revision 1.70 - (view) (download) (annotate) - [select for diffs]
Fri Jun 17 22:54:47 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.69: +8 -9 lines
Diff to previous 1.69
use ordinary ordered integers for state values

Revision 1.69 - (view) (download) (annotate) - [select for diffs]
Fri Jun 17 22:45:07 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.68: +39 -28 lines
Diff to previous 1.68
introduce INTERRUPTING->INTERRUPTED state transition

Revision 1.68 - (view) (download) (annotate) - [select for diffs]
Fri Jun 17 22:07:24 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.67: +38 -44 lines
Diff to previous 1.67
only reset runner to null after state is decided

Revision 1.67 - (view) (download) (annotate) - [select for diffs]
Fri Jun 17 21:07:12 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.66: +14 -12 lines
Diff to previous 1.66
reintroduce a constant, UNDECIDED, for state 0

Revision 1.66 - (view) (download) (annotate) - [select for diffs]
Fri Jun 17 21:00:44 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.65: +2 -2 lines
Diff to previous 1.65
only call Thread.currentThread if necessary

Revision 1.65 - (view) (download) (annotate) - [select for diffs]
Fri Jun 17 20:54:00 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.64: +2 -2 lines
Diff to previous 1.64
only call Thread.currentThread if necessary

Revision 1.64 - (view) (download) (annotate) - [select for diffs]
Fri Jun 17 20:46:43 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.63: +56 -44 lines
Diff to previous 1.63
style update

Revision 1.63 - (view) (download) (annotate) - [select for diffs]
Fri Jun 17 18:53:13 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.62: +1 -1 lines
Diff to previous 1.62
whitespace

Revision 1.62 - (view) (download) (annotate) - [select for diffs]
Fri Jun 17 14:43:54 2011 UTC (12 years, 11 months ago) by dl
Branch: MAIN
Changes since 1.61: +251 -175 lines
Diff to previous 1.61
Reimplement to avoid surprises about interrupt status on cancellation

Revision 1.61 - (view) (download) (annotate) - [select for diffs]
Thu Jun 9 22:11:39 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.60: +0 -9 lines
Diff to previous 1.60
remove 6270645 bug workaround

Revision 1.60 - (view) (download) (annotate) - [select for diffs]
Sat Jun 4 18:07:47 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.59: +1 -1 lines
Diff to previous 1.59
very small doc improvement

Revision 1.59 - (view) (download) (annotate) - [select for diffs]
Tue Mar 15 19:47:03 2011 UTC (13 years, 2 months ago) by jsr166
Branch: MAIN
CVS Tags: release-1_7_0
Changes since 1.58: +1 -1 lines
Diff to previous 1.58
Update Creative Commons license URL in legal notices

Revision 1.58 - (view) (download) (annotate) - [select for diffs]
Wed Sep 22 18:07:49 2010 UTC (13 years, 7 months ago) by jsr166
Branch: MAIN
Changes since 1.57: +1 -1 lines
Diff to previous 1.57
Future<Object> => Future<Void>

Revision 1.57 - (view) (download) (annotate) - [select for diffs]
Mon Sep 20 20:23:52 2010 UTC (13 years, 8 months ago) by jsr166
Branch: MAIN
Changes since 1.56: +1 -1 lines
Diff to previous 1.56
Fix javadoc code samples to use <pre>  {@code so that we can replace &lt; with <, etc.

Revision 1.56 - (view) (download) (annotate) - [select for diffs]
Sun May 18 23:47:56 2008 UTC (16 years ago) by jsr166
Branch: MAIN
Changes since 1.55: +32 -32 lines
Diff to previous 1.55
Sync with OpenJDK; untabify

Revision 1.55 - (view) (download) (annotate) - [select for diffs]
Wed Aug 8 16:19:04 2007 UTC (16 years, 9 months ago) by jsr166
Branch: MAIN
Changes since 1.54: +14 -9 lines
Diff to previous 1.54
6415572: FutureTask run method can swallow exceptions from done method

Revision 1.54 - (view) (download) (annotate) - [select for diffs]
Tue Jan 9 18:10:26 2007 UTC (17 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.53: +17 -16 lines
Diff to previous 1.53
6464365: FutureTask.{set,setException} not called by run()

Revision 1.53 - (view) (download) (annotate) - [select for diffs]
Thu Jun 22 05:23:32 2006 UTC (17 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.52: +1 -1 lines
Diff to previous 1.52
whitespace

Revision 1.52 - (view) (download) (annotate) - [select for diffs]
Thu Jun 8 08:35:22 2006 UTC (17 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.51: +6 -6 lines
Diff to previous 1.51
whitespace

Revision 1.51 - (view) (download) (annotate) - [select for diffs]
Tue May 30 10:19:21 2006 UTC (17 years, 11 months ago) by dl
Branch: MAIN
Changes since 1.50: +6 -0 lines
Diff to previous 1.50
Add code comments explaining last change

Revision 1.50 - (view) (download) (annotate) - [select for diffs]
Sun May 28 13:46:16 2006 UTC (17 years, 11 months ago) by dl
Branch: MAIN
Changes since 1.49: +26 -19 lines
Diff to previous 1.49
Avoid stale thread reference

Revision 1.49 - (view) (download) (annotate) - [select for diffs]
Wed May 17 13:00:36 2006 UTC (18 years ago) by dl
Branch: MAIN
Changes since 1.48: +5 -2 lines
Diff to previous 1.48
Improve responsiveness and handling of interrupts

Revision 1.48 - (view) (download) (annotate) - [select for diffs]
Tue Feb 7 20:54:24 2006 UTC (18 years, 3 months ago) by jsr166
Branch: MAIN
Changes since 1.47: +0 -1 lines
Diff to previous 1.47
6378729: Remove workaround for 6280605

Revision 1.47 - (view) (download) (annotate) - [select for diffs]
Thu Sep 8 00:04:00 2005 UTC (18 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.46: +0 -4 lines
Diff to previous 1.46
Edit pass for happens-before descriptions

Revision 1.46 - (view) (download) (annotate) - [select for diffs]
Fri Sep 2 01:10:52 2005 UTC (18 years, 8 months ago) by brian
Branch: MAIN
Changes since 1.45: +2 -3 lines
Diff to previous 1.45
Formatting tweaks to happens-before markup

Revision 1.45 - (view) (download) (annotate) - [select for diffs]
Fri Sep 2 01:03:08 2005 UTC (18 years, 8 months ago) by brian
Branch: MAIN
Changes since 1.44: +5 -0 lines
Diff to previous 1.44
Happens-before markup

Revision 1.44 - (view) (download) (annotate) - [select for diffs]
Mon Aug 15 20:40:25 2005 UTC (18 years, 9 months ago) by jsr166
Branch: MAIN
Changes since 1.43: +9 -0 lines
Diff to previous 1.43
workaround for javadoc bug 6270645

Revision 1.43 - (view) (download) (annotate) - [select for diffs]
Thu Jul 21 03:03:22 2005 UTC (18 years, 10 months ago) by jsr166
Branch: MAIN
Changes since 1.42: +7 -1 lines
Diff to previous 1.42
CancellationException

Revision 1.42 - (view) (download) (annotate) - [select for diffs]
Mon Jun 13 18:41:48 2005 UTC (18 years, 11 months ago) by dl
Branch: MAIN
Changes since 1.41: +2 -0 lines
Diff to previous 1.41
Add serial ids

Revision 1.41 - (view) (download) (annotate) - [select for diffs]
Sun Jun 12 00:36:30 2005 UTC (18 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.40: +2 -1 lines
Diff to previous 1.40
doc fixes

Revision 1.40 - (view) (download) (annotate) - [select for diffs]
Mon May 23 11:29:35 2005 UTC (19 years ago) by dl
Branch: MAIN
Changes since 1.39: +4 -4 lines
Diff to previous 1.39
Better integrate RunnableFuture etc specs

Revision 1.39 - (view) (download) (annotate) - [select for diffs]
Tue May 17 04:17:05 2005 UTC (19 years ago) by peierls
Branch: MAIN
Changes since 1.38: +1 -1 lines
Diff to previous 1.38
Overridable RunnableFuture creation for AbstractExecutorService.
OverridableRunnableScheduledFuture decoration for ScheduledThreadPoolExecutor.

Revision 1.38 - (view) (download) (annotate) - [select for diffs]
Mon May 16 08:57:48 2005 UTC (19 years ago) by jsr166
Branch: MAIN
Changes since 1.37: +21 -21 lines
Diff to previous 1.37
trailing whitespace

Revision 1.37 - (view) (download) (annotate) - [select for diffs]
Thu May 12 00:12:38 2005 UTC (19 years ago) by dl
Branch: MAIN
Changes since 1.36: +2 -2 lines
Diff to previous 1.36
Clarify previous change

Revision 1.36 - (view) (download) (annotate) - [select for diffs]
Wed May 11 23:47:58 2005 UTC (19 years ago) by dl
Branch: MAIN
Changes since 1.35: +6 -2 lines
Diff to previous 1.35
Ensure started cancelled tasks have interrupt set

Revision 1.35 - (view) (download) (annotate) - [select for diffs]
Mon May 2 18:38:53 2005 UTC (19 years ago) by jsr166
Branch: MAIN
Changes since 1.34: +14 -14 lines
Diff to previous 1.34
remove trailing whitespace

Revision 1.34 - (view) (download) (annotate) - [select for diffs]
Mon May 2 08:40:27 2005 UTC (19 years ago) by jsr166
Branch: MAIN
Changes since 1.33: +2 -2 lines
Diff to previous 1.33
catch( -> catch (

Revision 1.33 - (view) (download) (annotate) - [select for diffs]
Thu Apr 15 23:30:27 2004 UTC (20 years, 1 month ago) by dl
Branch: MAIN
Changes since 1.32: +21 -9 lines
Diff to previous 1.32
Retry CAS to avoid failure window.

Revision 1.32 - (view) (download) (annotate) - [select for diffs]
Sat Apr 10 14:25:24 2004 UTC (20 years, 1 month ago) by dl
Branch: MAIN
Changes since 1.31: +1 -1 lines
Diff to previous 1.31
Documentation improvements

Revision 1.31 - (view) (download) (annotate) - [select for diffs]
Mon Feb 9 13:28:48 2004 UTC (20 years, 3 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_PFD
Changes since 1.30: +2 -2 lines
Diff to previous 1.30
Wording fixes and improvements

Revision 1.30 - (view) (download) (annotate) - [select for diffs]
Mon Feb 9 00:23:55 2004 UTC (20 years, 3 months ago) by dl
Branch: MAIN
Changes since 1.29: +3 -30 lines
Diff to previous 1.29
Wording improvements and fixes

Revision 1.29 - (view) (download) (annotate) - [select for diffs]
Mon Jan 19 15:49:02 2004 UTC (20 years, 4 months ago) by dl
Branch: MAIN
Changes since 1.28: +1 -1 lines
Diff to previous 1.28
Javadoc fixes

Revision 1.28 - (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.27: +1 -1 lines
Diff to previous 1.27
Simplify/shorten AQS method names

Revision 1.27 - (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.26: +24 -24 lines
Diff to previous 1.26
Cosmetics

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

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

Revision 1.24 - (view) (download) (annotate) - [select for diffs]
Fri Jan 2 00:38:33 2004 UTC (20 years, 4 months ago) by dl
Branch: MAIN
Changes since 1.23: +154 -174 lines
Diff to previous 1.23
Use ACS in FutureTask; doc improvements

Revision 1.23 - (view) (download) (annotate) - [select for diffs]
Sat Dec 27 19:26:26 2003 UTC (20 years, 4 months ago) by dl
Branch: MAIN
Changes since 1.22: +2 -2 lines
Diff to previous 1.22
Headers reference Creative Commons

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

Revision 1.21 - (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.20: +13 -3 lines
Diff to previous 1.20
cache finals across volatiles; avoid readResolve; doc improvments; timed invokeAll interleaves

Revision 1.20 - (view) (download) (annotate) - [select for diffs]
Mon Dec 22 16:25:20 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.19: +99 -145 lines
Diff to previous 1.19
Simplify FutureTask and AbstractExecutorService internals; improve docs

Revision 1.19 - (view) (download) (annotate) - [select for diffs]
Mon Dec 22 00:48:14 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.18: +20 -29 lines
Diff to previous 1.18
Streamline status settting

Revision 1.18 - (view) (download) (annotate) - [select for diffs]
Sun Dec 21 14:55:52 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.17: +5 -1 lines
Diff to previous 1.17
Documentation improvements

Revision 1.17 - (view) (download) (annotate) - [select for diffs]
Sat Dec 20 18:57:32 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.16: +5 -6 lines
Diff to previous 1.16
Documentation improvements

Revision 1.16 - (view) (download) (annotate) - [select for diffs]
Fri Dec 19 14:42:25 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.15: +2 -1 lines
Diff to previous 1.15
Documentation improvements

Revision 1.15 - (view) (download) (annotate) - [select for diffs]
Fri Dec 5 11:57:52 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_DEC9_POST_ES_SUBMIT, JSR166_DEC9_PRE_ES_SUBMIT
Changes since 1.14: +39 -13 lines
Diff to previous 1.14
Avoid needing package-private fields

Revision 1.14 - (view) (download) (annotate) - [select for diffs]
Thu Dec 4 21:39:09 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.13: +116 -102 lines
Diff to previous 1.13
documentation touch-ups

Revision 1.13 - (view) (download) (annotate) - [select for diffs]
Thu Dec 4 20:54:29 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.12: +225 -54 lines
Diff to previous 1.12
Revised tests for revised Future classes

Revision 1.12 - (view) (download) (annotate) - [select for diffs]
Mon Nov 10 17:31:23 2003 UTC (20 years, 6 months ago) by dl
Branch: MAIN
Changes since 1.11: +1 -1 lines
Diff to previous 1.11
Wording and typo cleanup pass

Revision 1.11 - (view) (download) (annotate) - [select for diffs]
Sat Oct 18 12:29:33 2003 UTC (20 years, 7 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_NOV3_FREEZE
Changes since 1.10: +18 -6 lines
Diff to previous 1.10
Added docs for type params

Revision 1.10 - (view) (download) (annotate) - [select for diffs]
Fri Sep 26 11:37:10 2003 UTC (20 years, 7 months ago) by dl
Branch: MAIN
Changes since 1.9: +1 -1 lines
Diff to previous 1.9
Spellcheck

Revision 1.9 - (view) (download) (annotate) - [select for diffs]
Fri Sep 12 15:40:10 2003 UTC (20 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.8: +7 -1 lines
Diff to previous 1.8
Adapt AbstractQueue changes; Conditionalize CancellableTask.reset; new TimeUnit methods

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

Revision 1.7 - (view) (download) (annotate) - [select for diffs]
Wed Aug 6 16:08:49 2003 UTC (20 years, 9 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_CR1
Changes since 1.6: +8 -6 lines
Diff to previous 1.6
Misc doc touch-ups

Revision 1.6 - (view) (download) (annotate) - [select for diffs]
Thu Jul 31 19:49:42 2003 UTC (20 years, 9 months ago) by tim
Branch: MAIN
Changes since 1.5: +8 -8 lines
Diff to previous 1.5
Fix broken doc links

Revision 1.5 - (view) (download) (annotate) - [select for diffs]
Wed Jun 25 08:45:43 2003 UTC (20 years, 10 months ago) by jozart
Branch: MAIN
CVS Tags: JSR166_PRELIMINARY_TEST_RELEASE_2
Changes since 1.4: +2 -2 lines
Diff to previous 1.4
Removed extraneous Cancellable and Runnable from implements list.

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

Revision 1.3 - (view) (download) (annotate) - [select for diffs]
Tue Jun 3 16:44:36 2003 UTC (20 years, 11 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_PRELIMINARY_TEST_RELEASE_1
Changes since 1.2: +19 -141 lines
Diff to previous 1.2
New ScheduledExecutor; CancellableTask

Revision 1.2 - (view) (download) (annotate) - [select for diffs]
Tue May 27 18:14:40 2003 UTC (20 years, 11 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_PRERELEASE_0_1
Changes since 1.1: +95 -52 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:47 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)

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