ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/ConcurrentLinkedQueue.java
Revision 1.160 - (view) (download) (annotate) - [select for diffs]
Mon Oct 1 00:10:53 2018 UTC (5 years, 7 months ago) by jsr166
Branch: MAIN
CVS Tags: HEAD
Changes since 1.159: +1 -1 lines
Diff to previous 1.159
update to using jdk11 by default, except link to jdk10 javadocs;
sync @docRoot references in javadoc with upstream

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

Revision 1.158 - (view) (download) (annotate) - [select for diffs]
Sat May 6 06:49:46 2017 UTC (7 years ago) by jsr166
Branch: MAIN
Changes since 1.157: +1 -1 lines
Diff to previous 1.157
8177789: fix collections framework links to point to java.util package doc

Revision 1.157 - (view) (download) (annotate) - [select for diffs]
Tue Jan 31 22:21:17 2017 UTC (7 years, 3 months ago) by jsr166
Branch: MAIN
Changes since 1.156: +5 -2 lines
Diff to previous 1.156
better style, better bytecode, as suggested by psandoz

Revision 1.156 - (view) (download) (annotate) - [select for diffs]
Sat Jan 14 06:50:52 2017 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.155: +1 -1 lines
Diff to previous 1.155
internal docs

Revision 1.155 - (view) (download) (annotate) - [select for diffs]
Sat Jan 14 06:28:49 2017 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.154: +5 -6 lines
Diff to previous 1.154
internal docs

Revision 1.154 - (view) (download) (annotate) - [select for diffs]
Sat Jan 14 03:27:16 2017 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.153: +43 -34 lines
Diff to previous 1.153
introduce methods into Node class

Revision 1.153 - (view) (download) (annotate) - [select for diffs]
Sat Jan 14 01:04:52 2017 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.152: +2 -4 lines
Diff to previous 1.152
readObject: use inline assignment

Revision 1.152 - (view) (download) (annotate) - [select for diffs]
Sun Jan 8 03:48:36 2017 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.151: +8 -7 lines
Diff to previous 1.151
save a few volatile reads

Revision 1.151 - (view) (download) (annotate) - [select for diffs]
Sat Jan 7 21:17:45 2017 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.150: +2 -2 lines
Diff to previous 1.150
skipDeadNodes: improve asserts

Revision 1.150 - (view) (download) (annotate) - [select for diffs]
Sat Jan 7 20:01:39 2017 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.149: +56 -28 lines
Diff to previous 1.149
optimize traversal methods for chains of live nodes

Revision 1.149 - (view) (download) (annotate) - [select for diffs]
Fri Jan 6 23:02:44 2017 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.148: +2 -2 lines
Diff to previous 1.148
remove unused loop locals

Revision 1.148 - (view) (download) (annotate) - [select for diffs]
Fri Jan 6 00:16:23 2017 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.147: +2 -3 lines
Diff to previous 1.147
Object item -> E item

Revision 1.147 - (view) (download) (annotate) - [select for diffs]
Wed Jan 4 01:25:06 2017 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.146: +3 -4 lines
Diff to previous 1.146
sync bulkRemove with LTQ

Revision 1.146 - (view) (download) (annotate) - [select for diffs]
Tue Jan 3 06:17:54 2017 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.145: +22 -28 lines
Diff to previous 1.145
yet another rework of traversal methods

Revision 1.145 - (view) (download) (annotate) - [select for diffs]
Tue Jan 3 04:33:57 2017 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.144: +3 -3 lines
Diff to previous 1.144
coding style

Revision 1.144 - (view) (download) (annotate) - [select for diffs]
Mon Jan 2 00:10:14 2017 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.143: +2 -0 lines
Diff to previous 1.143
add assertions that we never cas-unlink the trailing node

Revision 1.143 - (view) (download) (annotate) - [select for diffs]
Thu Dec 29 23:08:16 2016 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.142: +6 -6 lines
Diff to previous 1.142
Stop trying to enumerate all possible bulk operations in the spec

Revision 1.142 - (view) (download) (annotate) - [select for diffs]
Thu Dec 29 03:04:09 2016 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.141: +29 -25 lines
Diff to previous 1.141
port forEachFrom from LTQ to CLQ

Revision 1.141 - (view) (download) (annotate) - [select for diffs]
Thu Dec 29 02:39:40 2016 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.140: +6 -6 lines
Diff to previous 1.140
sync loops style with LTQ

Revision 1.140 - (view) (download) (annotate) - [select for diffs]
Wed Dec 28 04:57:36 2016 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.139: +3 -2 lines
Diff to previous 1.139
succ: bytecode golf

Revision 1.139 - (view) (download) (annotate) - [select for diffs]
Mon Dec 26 19:54:45 2016 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.138: +35 -34 lines
Diff to previous 1.138
rewrite spliterators to address 8172023: Concurrent spliterators fail to handle exhaustion properly

Revision 1.138 - (view) (download) (annotate) - [select for diffs]
Mon Dec 26 17:29:34 2016 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.137: +4 -2 lines
Diff to previous 1.137
write to exhausted field only when necessary

Revision 1.137 - (view) (download) (annotate) - [select for diffs]
Sat Dec 24 19:32:07 2016 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.136: +3 -3 lines
Diff to previous 1.136
convert to Objects.requireNonNull

Revision 1.136 - (view) (download) (annotate) - [select for diffs]
Sat Dec 24 11:14:37 2016 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.135: +3 -4 lines
Diff to previous 1.135
tweak spliterator code

Revision 1.135 - (view) (download) (annotate) - [select for diffs]
Sat Dec 24 04:28:27 2016 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.134: +3 -2 lines
Diff to previous 1.134
coding style

Revision 1.134 - (view) (download) (annotate) - [select for diffs]
Sat Dec 10 16:37:30 2016 UTC (7 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.133: +7 -8 lines
Diff to previous 1.133
improve implementation comment

Revision 1.133 - (view) (download) (annotate) - [select for diffs]
Wed Dec 7 23:50:38 2016 UTC (7 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.132: +118 -56 lines
Diff to previous 1.132
optimize traversal methods; avoid using Iterators

Revision 1.132 - (view) (download) (annotate) - [select for diffs]
Tue Dec 6 04:41:18 2016 UTC (7 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.131: +16 -15 lines
Diff to previous 1.131
bytecode golf

Revision 1.131 - (view) (download) (annotate) - [select for diffs]
Mon Dec 5 03:02:49 2016 UTC (7 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.130: +58 -7 lines
Diff to previous 1.130
implement forEach removeIf removeAll retainAll

Revision 1.130 - (view) (download) (annotate) - [select for diffs]
Wed Nov 30 03:31:47 2016 UTC (7 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.129: +8 -15 lines
Diff to previous 1.129
convert Spliterator implementations to inner classes

Revision 1.129 - (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.128: +4 -4 lines
Diff to previous 1.128
incorporate upstream VarHandle changes

Revision 1.128 - (view) (download) (annotate) - [select for diffs]
Tue Jun 28 17:04:36 2016 UTC (7 years, 10 months ago) by jsr166
Branch: MAIN
Changes since 1.127: +2 -2 lines
Diff to previous 1.127
whitespace

Revision 1.127 - (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.126: +4 -4 lines
Diff to previous 1.126
Use new CAS variants when applicable

Revision 1.126 - (view) (download) (annotate) - [select for diffs]
Mon Jun 13 15:31:25 2016 UTC (7 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.125: +1 -1 lines
Diff to previous 1.125
fix JDK-8159351: non-atomic "bulk" ops note in class javadoc for ConcurrentLinkedQueue, ConcurrentLinkedDeque, & LinkedTransferQueue should not include equals

Revision 1.125 - (view) (download) (annotate) - [select for diffs]
Sat Jun 4 19:51:49 2016 UTC (7 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.124: +3 -3 lines
Diff to previous 1.124
s/setRelease/set/ for provably private uses (especially CAS piggyback)

Revision 1.124 - (view) (download) (annotate) - [select for diffs]
Thu Jun 2 14:52:04 2016 UTC (7 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.123: +2 -2 lines
Diff to previous 1.123
fix comment typo

Revision 1.123 - (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.122: +33 -55 lines
Diff to previous 1.122
VarHandles conversion; pass 1

Revision 1.122 - (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.121: +2 -2 lines
Diff to previous 1.121
s~\bsun\.(misc\.Unsafe)\b~jdk.internal.$1~g;
s~\bputOrdered([A-Za-z]+)\b~put${1}Release~g

Revision 1.121 - (view) (download) (annotate) - [select for diffs]
Tue May 26 20:20:31 2015 UTC (8 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.120: +3 -2 lines
Diff to previous 1.120
whitespace

Revision 1.120 - (view) (download) (annotate) - [select for diffs]
Wed Mar 4 00:22:30 2015 UTC (9 years, 2 months ago) by jsr166
Branch: MAIN
Changes since 1.119: +1 -16 lines
Diff to previous 1.119
optimize toString() methods; introduce Helpers

Revision 1.119 - (view) (download) (annotate) - [select for diffs]
Sun Feb 22 04:52:04 2015 UTC (9 years, 2 months ago) by jsr166
Branch: MAIN
Changes since 1.118: +0 -1 lines
Diff to previous 1.118
unused import

Revision 1.118 - (view) (download) (annotate) - [select for diffs]
Sat Feb 21 17:15:00 2015 UTC (9 years, 2 months ago) by jsr166
Branch: MAIN
Changes since 1.117: +4 -16 lines
Diff to previous 1.117
s/checkNotNull/Objects.requireNonNull/g

Revision 1.117 - (view) (download) (annotate) - [select for diffs]
Fri Feb 20 03:09:08 2015 UTC (9 years, 2 months ago) by jsr166
Branch: MAIN
Changes since 1.116: +75 -30 lines
Diff to previous 1.116
improve toArray and toString implementations

Revision 1.116 - (view) (download) (annotate) - [select for diffs]
Wed Feb 18 06:39:40 2015 UTC (9 years, 3 months ago) by jsr166
Branch: MAIN
Changes since 1.115: +1 -3 lines
Diff to previous 1.115
use "standard" if (p == (p = p.next)) idiom

Revision 1.115 - (view) (download) (annotate) - [select for diffs]
Tue Feb 17 18:55:39 2015 UTC (9 years, 3 months ago) by jsr166
Branch: MAIN
Changes since 1.114: +1 -1 lines
Diff to previous 1.114
standardize code sample idiom: * <pre> {@code

Revision 1.114 - (view) (download) (annotate) - [select for diffs]
Sun Jan 18 18:15:57 2015 UTC (9 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.113: +33 -33 lines
Diff to previous 1.113
more small improvements to CLQ iterator

Revision 1.113 - (view) (download) (annotate) - [select for diffs]
Sun Jan 18 16:34:02 2015 UTC (9 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.112: +1 -0 lines
Diff to previous 1.112
add an assert

Revision 1.112 - (view) (download) (annotate) - [select for diffs]
Sat Jan 17 18:29:35 2015 UTC (9 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.111: +1 -1 lines
Diff to previous 1.111
Improve CLQ iterator by separating element return from advance()

Revision 1.111 - (view) (download) (annotate) - [select for diffs]
Sat Jan 17 18:27:30 2015 UTC (9 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.110: +10 -17 lines
Diff to previous 1.110
Improve CLQ iterator by separating element return from advance()

Revision 1.110 - (view) (download) (annotate) - [select for diffs]
Fri Jan 16 22:38:54 2015 UTC (9 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.109: +15 -10 lines
Diff to previous 1.109
fix for 8054446: Repeated offer and remove on ConcurrentLinkedQueue lead to an OutOfMemoryError

Revision 1.109 - (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.108: +9 -8 lines
Diff to previous 1.108
standardize Unsafe mechanics; slightly smaller bytecode

Revision 1.108 - (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.107: +1 -1 lines
Diff to previous 1.107
use ReflectiveOperationException for Unsafe mechanics

Revision 1.107 - (view) (download) (annotate) - [select for diffs]
Wed Dec 31 09:37:20 2014 UTC (9 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.106: +0 -3 lines
Diff to previous 1.106
remove unused/redundant imports

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

Revision 1.105 - (view) (download) (annotate) - [select for diffs]
Tue Dec 2 05:48:28 2014 UTC (9 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.104: +1 -1 lines
Diff to previous 1.104
this collection => this XXX

Revision 1.104 - (view) (download) (annotate) - [select for diffs]
Sun Nov 23 18:20:26 2014 UTC (9 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.103: +1 -2 lines
Diff to previous 1.103
move declaration into loop

Revision 1.103 - (view) (download) (annotate) - [select for diffs]
Sun Nov 23 17:44:51 2014 UTC (9 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.102: +19 -17 lines
Diff to previous 1.102
save a few bytes of bytecode

Revision 1.102 - (view) (download) (annotate) - [select for diffs]
Tue Nov 11 22:39:42 2014 UTC (9 years, 6 months ago) by jsr166
Branch: MAIN
Changes since 1.101: +48 -62 lines
Diff to previous 1.101
use new coding style for Unsafe operations

Revision 1.101 - (view) (download) (annotate) - [select for diffs]
Tue Nov 11 04:43:34 2014 UTC (9 years, 6 months ago) by jsr166
Branch: MAIN
Changes since 1.100: +1 -1 lines
Diff to previous 1.100
sync with CLD

Revision 1.100 - (view) (download) (annotate) - [select for diffs]
Tue Nov 11 04:39:30 2014 UTC (9 years, 6 months ago) by jsr166
Branch: MAIN
Changes since 1.99: +13 -7 lines
Diff to previous 1.99
improve accuracy of concurrent queue size methods

Revision 1.99 - (view) (download) (annotate) - [select for diffs]
Wed Oct 29 20:23:14 2014 UTC (9 years, 6 months ago) by jsr166
Branch: MAIN
Changes since 1.98: +3 -3 lines
Diff to previous 1.98
use new URL for the Micheal/Scott paper

Revision 1.98 - (view) (download) (annotate) - [select for diffs]
Thu Aug 8 20:12:10 2013 UTC (10 years, 9 months ago) by jsr166
Branch: MAIN
Changes since 1.97: +5 -6 lines
Diff to previous 1.97
refactor definitions of "weakly consistent" into package-info.java

Revision 1.97 - (view) (download) (annotate) - [select for diffs]
Thu Aug 8 15:13:34 2013 UTC (10 years, 9 months ago) by jsr166
Branch: MAIN
Changes since 1.96: +14 -0 lines
Diff to previous 1.96
add javadoc for spliterator()

Revision 1.96 - (view) (download) (annotate) - [select for diffs]
Thu Jul 18 18:21:22 2013 UTC (10 years, 10 months ago) by jsr166
Branch: MAIN
Changes since 1.95: +4 -0 lines
Diff to previous 1.95
javadoc warning fixes: add serialization method @throws

Revision 1.95 - (view) (download) (annotate) - [select for diffs]
Thu Jul 18 17:38:29 2013 UTC (10 years, 10 months ago) by jsr166
Branch: MAIN
Changes since 1.94: +2 -0 lines
Diff to previous 1.94
javadoc warning fixes: add serialization method @param

Revision 1.94 - (view) (download) (annotate) - [select for diffs]
Wed Jun 19 16:57:06 2013 UTC (10 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.93: +0 -1 lines
Diff to previous 1.93
whitespace

Revision 1.93 - (view) (download) (annotate) - [select for diffs]
Mon Jun 17 17:17:05 2013 UTC (10 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.92: +1 -1 lines
Diff to previous 1.92
inaccurate terminology; s/wait-free/non-blocking/

Revision 1.92 - (view) (download) (annotate) - [select for diffs]
Fri Jun 7 23:56:37 2013 UTC (10 years, 11 months ago) by dl
Branch: MAIN
Changes since 1.91: +1 -6 lines
Diff to previous 1.91
Sync with lambda

Revision 1.91 - (view) (download) (annotate) - [select for diffs]
Thu May 2 06:00:07 2013 UTC (11 years ago) by jsr166
Branch: MAIN
Changes since 1.90: +0 -1 lines
Diff to previous 1.90
port to latest lambda

Revision 1.90 - (view) (download) (annotate) - [select for diffs]
Wed Mar 27 19:46:34 2013 UTC (11 years, 1 month ago) by dl
Branch: MAIN
Changes since 1.89: +1 -1 lines
Diff to previous 1.89
conform to updated lambda Spliterator

Revision 1.89 - (view) (download) (annotate) - [select for diffs]
Mon Mar 18 12:40:30 2013 UTC (11 years, 2 months ago) by dl
Branch: MAIN
Changes since 1.88: +10 -9 lines
Diff to previous 1.88
Mesh Map and Spliterator methods with lambda

Revision 1.88 - (view) (download) (annotate) - [select for diffs]
Sun Mar 17 15:48:53 2013 UTC (11 years, 2 months ago) by jsr166
Branch: MAIN
Changes since 1.87: +1 -1 lines
Diff to previous 1.87
remove package qualification for ForkJoinTask

Revision 1.87 - (view) (download) (annotate) - [select for diffs]
Sun Mar 17 15:34:21 2013 UTC (11 years, 2 months ago) by jsr166
Branch: MAIN
Changes since 1.86: +3 -3 lines
Diff to previous 1.86
whitespace

Revision 1.86 - (view) (download) (annotate) - [select for diffs]
Sat Mar 16 16:03:08 2013 UTC (11 years, 2 months ago) by dl
Branch: MAIN
Changes since 1.85: +14 -11 lines
Diff to previous 1.85
Sync with lambda spliterator semantics

Revision 1.85 - (view) (download) (annotate) - [select for diffs]
Wed Mar 13 12:39:01 2013 UTC (11 years, 2 months ago) by dl
Branch: MAIN
Changes since 1.84: +1 -10 lines
Diff to previous 1.84
Synch with lambda Spliterator API

Revision 1.84 - (view) (download) (annotate) - [select for diffs]
Tue Feb 26 17:28:00 2013 UTC (11 years, 2 months ago) by jsr166
Branch: MAIN
Changes since 1.83: +2 -2 lines
Diff to previous 1.83
promote comments to actual javadoc

Revision 1.83 - (view) (download) (annotate) - [select for diffs]
Mon Feb 25 17:59:40 2013 UTC (11 years, 2 months ago) by dl
Branch: MAIN
Changes since 1.82: +6 -2 lines
Diff to previous 1.82
lambda syncs and improvements

Revision 1.82 - (view) (download) (annotate) - [select for diffs]
Sun Feb 17 23:36:34 2013 UTC (11 years, 3 months ago) by dl
Branch: MAIN
Changes since 1.81: +104 -0 lines
Diff to previous 1.81
Spliterator sync

Revision 1.81 - (view) (download) (annotate) - [select for diffs]
Sun Dec 30 05:14:51 2012 UTC (11 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.80: +1 -1 lines
Diff to previous 1.80
javadoc style

Revision 1.80 - (view) (download) (annotate) - [select for diffs]
Sun Oct 21 06:14:12 2012 UTC (11 years, 6 months ago) by jsr166
Branch: MAIN
Changes since 1.79: +0 -1 lines
Diff to previous 1.79
delete trailing empty lines of javadoc

Revision 1.79 - (view) (download) (annotate) - [select for diffs]
Mon Dec 12 20:53:11 2011 UTC (12 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.78: +2 -4 lines
Diff to previous 1.78
uniform serialization method javadocs

Revision 1.78 - (view) (download) (annotate) - [select for diffs]
Thu Nov 24 02:35:12 2011 UTC (12 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.77: +0 -1 lines
Diff to previous 1.77
whitespace

Revision 1.77 - (view) (download) (annotate) - [select for diffs]
Thu Jun 9 07:48:43 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.76: +1 -2 lines
Diff to previous 1.76
consistent style for code snippets

Revision 1.76 - (view) (download) (annotate) - [select for diffs]
Fri Jun 3 02:28:05 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.75: +2 -2 lines
Diff to previous 1.75
fix javac 7 [rawtypes] warnings

Revision 1.75 - (view) (download) (annotate) - [select for diffs]
Fri Apr 22 13:46:46 2011 UTC (13 years, 1 month ago) by dl
Branch: MAIN
CVS Tags: release-1_7_0
Changes since 1.74: +4 -4 lines
Diff to previous 1.74
Use {@code} not <tt>

Revision 1.74 - (view) (download) (annotate) - [select for diffs]
Fri Apr 22 11:51:42 2011 UTC (13 years, 1 month ago) by dl
Branch: MAIN
Changes since 1.73: +8 -1 lines
Diff to previous 1.73
Improved bulk operation disclaimers for concurrent collections

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

Revision 1.72 - (view) (download) (annotate) - [select for diffs]
Wed Feb 23 15:57:48 2011 UTC (13 years, 2 months ago) by dl
Branch: MAIN
Changes since 1.71: +3 -3 lines
Diff to previous 1.71
Whitespace

Revision 1.71 - (view) (download) (annotate) - [select for diffs]
Tue Feb 22 23:53:32 2011 UTC (13 years, 2 months ago) by dl
Branch: MAIN
Changes since 1.70: +32 -24 lines
Diff to previous 1.70
Reduce dependencies in static initialization

Revision 1.70 - (view) (download) (annotate) - [select for diffs]
Fri Nov 19 08:02:09 2010 UTC (13 years, 6 months ago) by jsr166
Branch: MAIN
Changes since 1.69: +5 -5 lines
Diff to previous 1.69
make iterator weakly consistent specs more consistent

Revision 1.69 - (view) (download) (annotate) - [select for diffs]
Thu Nov 18 00:39:15 2010 UTC (13 years, 6 months ago) by jsr166
Branch: MAIN
Changes since 1.68: +1 -1 lines
Diff to previous 1.68
whitespace

Revision 1.68 - (view) (download) (annotate) - [select for diffs]
Wed Nov 17 10:49:53 2010 UTC (13 years, 6 months ago) by dl
Branch: MAIN
Changes since 1.67: +2 -2 lines
Diff to previous 1.67
Sync with upstream @link fix

Revision 1.67 - (view) (download) (annotate) - [select for diffs]
Mon Oct 11 18:50:08 2010 UTC (13 years, 7 months ago) by jsr166
Branch: MAIN
Changes since 1.66: +3 -0 lines
Diff to previous 1.66
sync javadoc of enqueue methods

Revision 1.66 - (view) (download) (annotate) - [select for diffs]
Fri Sep 17 21:06:44 2010 UTC (13 years, 8 months ago) by jsr166
Branch: MAIN
Changes since 1.65: +3 -3 lines
Diff to previous 1.65
authorship

Revision 1.65 - (view) (download) (annotate) - [select for diffs]
Fri Sep 17 15:42:40 2010 UTC (13 years, 8 months ago) by jsr166
Branch: MAIN
Changes since 1.64: +84 -86 lines
Diff to previous 1.64
performance tweaks; hardcode slack value of 2, as in LTQ; re-read tail if last node not found after 2 hops

Revision 1.64 - (view) (download) (annotate) - [select for diffs]
Mon Sep 13 16:50:36 2010 UTC (13 years, 8 months ago) by jsr166
Branch: MAIN
Changes since 1.63: +18 -28 lines
Diff to previous 1.63
remove accessor methods for Node.item; make size methods consistent

Revision 1.63 - (view) (download) (annotate) - [select for diffs]
Mon Sep 13 01:48:29 2010 UTC (13 years, 8 months ago) by jsr166
Branch: MAIN
Changes since 1.62: +3 -0 lines
Diff to previous 1.62
very small clarifications

Revision 1.62 - (view) (download) (annotate) - [select for diffs]
Sun Sep 12 00:34:46 2010 UTC (13 years, 8 months ago) by jsr166
Branch: MAIN
Changes since 1.61: +3 -3 lines
Diff to previous 1.61
use non-volatile writes for bulk operations that build a thread-confined data structure

Revision 1.61 - (view) (download) (annotate) - [select for diffs]
Sat Sep 11 22:32:38 2010 UTC (13 years, 8 months ago) by jsr166
Branch: MAIN
Changes since 1.60: +0 -4 lines
Diff to previous 1.60
delete unused method lazySetHead

Revision 1.60 - (view) (download) (annotate) - [select for diffs]
Sat Sep 11 22:26:37 2010 UTC (13 years, 8 months ago) by jsr166
Branch: MAIN
Changes since 1.59: +1 -1 lines
Diff to previous 1.59
coding style

Revision 1.59 - (view) (download) (annotate) - [select for diffs]
Sat Sep 11 21:10:25 2010 UTC (13 years, 8 months ago) by jsr166
Branch: MAIN
Changes since 1.58: +4 -4 lines
Diff to previous 1.58
better label names for "goto" statements

Revision 1.58 - (view) (download) (annotate) - [select for diffs]
Fri Sep 10 23:03:50 2010 UTC (13 years, 8 months ago) by jsr166
Branch: MAIN
Changes since 1.57: +4 -3 lines
Diff to previous 1.57
coding style

Revision 1.57 - (view) (download) (annotate) - [select for diffs]
Wed Sep 1 22:49:09 2010 UTC (13 years, 8 months ago) by jsr166
Branch: MAIN
Changes since 1.56: +5 -6 lines
Diff to previous 1.56
Use relaxed Unsafe.putObject in Node constructors

Revision 1.56 - (view) (download) (annotate) - [select for diffs]
Tue Aug 24 22:30:24 2010 UTC (13 years, 8 months ago) by jsr166
Branch: MAIN
Changes since 1.55: +9 -3 lines
Diff to previous 1.55
restore historic behavior of q.addAll(q)

Revision 1.55 - (view) (download) (annotate) - [select for diffs]
Tue Aug 24 22:02:56 2010 UTC (13 years, 8 months ago) by jsr166
Branch: MAIN
Changes since 1.54: +125 -42 lines
Diff to previous 1.54
Optimize bulk operations; javadoc clarifications

Revision 1.54 - (view) (download) (annotate) - [select for diffs]
Thu May 20 18:48:50 2010 UTC (14 years ago) by jsr166
Branch: MAIN
Changes since 1.53: +12 -4 lines
Diff to previous 1.53
Add more warnings about using size() in concurrent queues

Revision 1.53 - (view) (download) (annotate) - [select for diffs]
Tue Sep 1 22:18:54 2009 UTC (14 years, 8 months ago) by jsr166
Branch: MAIN
Changes since 1.52: +2 -2 lines
Diff to previous 1.52
Use enhanced for loop

Revision 1.52 - (view) (download) (annotate) - [select for diffs]
Wed Jul 29 20:53:30 2009 UTC (14 years, 9 months ago) by jsr166
Branch: MAIN
Changes since 1.51: +2 -1 lines
Diff to previous 1.51
6866554: Misc. javadoc warnings

Revision 1.51 - (view) (download) (annotate) - [select for diffs]
Wed Jul 29 17:47:05 2009 UTC (14 years, 9 months ago) by jsr166
Branch: MAIN
Changes since 1.50: +43 -11 lines
Diff to previous 1.50
6785442: ConcurrentLinkedQueue.remove() and poll() can both remove the same element

Revision 1.50 - (view) (download) (annotate) - [select for diffs]
Wed Jul 29 17:42:28 2009 UTC (14 years, 9 months ago) by jsr166
Branch: MAIN
Changes since 1.49: +31 -50 lines
Diff to previous 1.49
Fix Unsafe mechanics compilation errors

Revision 1.49 - (view) (download) (annotate) - [select for diffs]
Fri Jul 24 23:50:01 2009 UTC (14 years, 9 months ago) by jsr166
Branch: MAIN
Changes since 1.48: +5 -4 lines
Diff to previous 1.48
Unsafe mechanics

Revision 1.48 - (view) (download) (annotate) - [select for diffs]
Tue Jul 7 23:17:20 2009 UTC (14 years, 10 months ago) by jsr166
Branch: MAIN
Changes since 1.47: +346 -137 lines
Diff to previous 1.47
6785442: ConcurrentLinkedQueue.remove() and poll() can both remove the same element

Revision 1.47 - (view) (download) (annotate) - [select for diffs]
Sun May 28 23:36:29 2006 UTC (17 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.46: +1 -1 lines
Diff to previous 1.46
Location of Collections Guide has changed

Revision 1.46 - (view) (download) (annotate) - [select for diffs]
Sun Nov 20 15:38:08 2005 UTC (18 years, 6 months ago) by dl
Branch: MAIN
Changes since 1.45: +0 -85 lines
Diff to previous 1.45
Eliminate unnecessary special handling of toArray

Revision 1.45 - (view) (download) (annotate) - [select for diffs]
Sat Nov 12 19:54:54 2005 UTC (18 years, 6 months ago) by jsr166
Branch: MAIN
Changes since 1.44: +1 -1 lines
Diff to previous 1.44
whitespace

Revision 1.44 - (view) (download) (annotate) - [select for diffs]
Sat Nov 5 23:55:31 2005 UTC (18 years, 6 months ago) by dl
Branch: MAIN
Changes since 1.43: +8 -1 lines
Diff to previous 1.43
Improve internal documentation.

Revision 1.43 - (view) (download) (annotate) - [select for diffs]
Wed Sep 14 21:45:12 2005 UTC (18 years, 8 months ago) by jsr166
Branch: MAIN
Changes since 1.42: +7 -6 lines
Diff to previous 1.42
happens-before

Revision 1.42 - (view) (download) (annotate) - [select for diffs]
Thu Sep 8 21:58:22 2005 UTC (18 years, 8 months ago) by jsr166
Branch: MAIN
Changes since 1.41: +3 -3 lines
Diff to previous 1.41
whitespace

Revision 1.41 - (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.40: +1 -1 lines
Diff to previous 1.40
Edit pass for happens-before descriptions

Revision 1.40 - (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.39: +6 -0 lines
Diff to previous 1.39
Happens-before markup

Revision 1.39 - (view) (download) (annotate) - [select for diffs]
Mon Jul 18 19:14:17 2005 UTC (18 years, 10 months ago) by jsr166
Branch: MAIN
Changes since 1.38: +2 -2 lines
Diff to previous 1.38
doc fixes

Revision 1.38 - (view) (download) (annotate) - [select for diffs]
Wed Jun 8 01:44:14 2005 UTC (18 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.37: +1 -1 lines
Diff to previous 1.37
whitespace

Revision 1.37 - (view) (download) (annotate) - [select for diffs]
Sat May 21 02:57:45 2005 UTC (19 years ago) by jsr166
Branch: MAIN
Changes since 1.36: +20 -1 lines
Diff to previous 1.36
contains; remove

Revision 1.36 - (view) (download) (annotate) - [select for diffs]
Wed May 18 01:40:56 2005 UTC (19 years ago) by jsr166
Branch: MAIN
Changes since 1.35: +1 -1 lines
Diff to previous 1.35
whitespace

Revision 1.35 - (view) (download) (annotate) - [select for diffs]
Tue May 17 17:57:41 2005 UTC (19 years ago) by jsr166
Branch: MAIN
Changes since 1.34: +1 -1 lines
Diff to previous 1.34
doc fixes

Revision 1.34 - (view) (download) (annotate) - [select for diffs]
Tue May 17 05:22:16 2005 UTC (19 years ago) by jsr166
Branch: MAIN
Changes since 1.33: +2 -2 lines
Diff to previous 1.33
doc fixes

Revision 1.33 - (view) (download) (annotate) - [select for diffs]
Tue May 17 04:20:08 2005 UTC (19 years ago) by jsr166
Branch: MAIN
Changes since 1.32: +53 -4 lines
Diff to previous 1.32
doc fixes

Revision 1.32 - (view) (download) (annotate) - [select for diffs]
Mon May 16 08:54:27 2005 UTC (19 years ago) by jsr166
Branch: MAIN
Changes since 1.31: +5 -9 lines
Diff to previous 1.31
doc fixes

Revision 1.31 - (view) (download) (annotate) - [select for diffs]
Mon May 2 08:35:49 2005 UTC (19 years ago) by jsr166
Branch: MAIN
Changes since 1.30: +7 -7 lines
Diff to previous 1.30
E o -> E e

Revision 1.30 - (view) (download) (annotate) - [select for diffs]
Fri Apr 29 02:00:39 2005 UTC (19 years ago) by jsr166
Branch: MAIN
Changes since 1.29: +2 -2 lines
Diff to previous 1.29
doc fixes

Revision 1.29 - (view) (download) (annotate) - [select for diffs]
Tue Apr 26 01:17:18 2005 UTC (19 years ago) by jsr166
Branch: MAIN
Changes since 1.28: +31 -31 lines
Diff to previous 1.28
doc fixes

Revision 1.28 - (view) (download) (annotate) - [select for diffs]
Tue Sep 28 21:43:00 2004 UTC (19 years, 7 months ago) by dl
Branch: MAIN
Changes since 1.27: +5 -0 lines
Diff to previous 1.27
Add javadoc to isEmpty to override misleading AbstractCollection javadoc

Revision 1.27 - (view) (download) (annotate) - [select for diffs]
Wed Jun 2 23:49:07 2004 UTC (19 years, 11 months ago) by dl
Branch: MAIN
Changes since 1.26: +3 -2 lines
Diff to previous 1.26
CopyOnWriteArraySet and ConcurrentHashMap no longer implement Cloneable
Improve javadoc wording in other classes

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

Revision 1.25 - (view) (download) (annotate) - [select for diffs]
Tue Jan 27 11:36:31 2004 UTC (20 years, 3 months ago) by dl
Branch: MAIN
Changes since 1.24: +5 -1 lines
Diff to previous 1.24
Add Collection framework membership doc

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

Revision 1.23 - (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.22: +44 -44 lines
Diff to previous 1.22
cache finals across volatiles; avoid readResolve; doc improvments; timed invokeAll interleaves

Revision 1.22 - (view) (download) (annotate) - [select for diffs]
Wed Nov 12 01:04:24 2003 UTC (20 years, 6 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_DEC9_POST_ES_SUBMIT, JSR166_DEC9_PRE_ES_SUBMIT
Changes since 1.21: +49 -49 lines
Diff to previous 1.21
fixed typos; avoided some casts

Revision 1.21 - (view) (download) (annotate) - [select for diffs]
Sun Oct 19 13:38:34 2003 UTC (20 years, 7 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_NOV3_FREEZE
Changes since 1.20: +1 -1 lines
Diff to previous 1.20
Changed doc strings for generic params

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

Revision 1.19 - (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.18: +2 -2 lines
Diff to previous 1.18
Spellcheck

Revision 1.18 - (view) (download) (annotate) - [select for diffs]
Sat Sep 13 18:51:11 2003 UTC (20 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.17: +4 -0 lines
Diff to previous 1.17
Proofreading pass -- many minor adjustments

Revision 1.17 - (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.16: +17 -34 lines
Diff to previous 1.16
Adapt AbstractQueue changes; Conditionalize CancellableTask.reset; new TimeUnit methods

Revision 1.16 - (view) (download) (annotate) - [select for diffs]
Sun Sep 7 15:06:24 2003 UTC (20 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.15: +4 -2 lines
Diff to previous 1.15
Serialization fixes

Revision 1.15 - (view) (download) (annotate) - [select for diffs]
Mon Sep 1 14:00:25 2003 UTC (20 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.14: +2 -2 lines
Diff to previous 1.14
Fix javadoc typos

Revision 1.14 - (view) (download) (annotate) - [select for diffs]
Mon Aug 25 19:27:58 2003 UTC (20 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.13: +1 -0 lines
Diff to previous 1.13
serialVersionUIDs

Revision 1.13 - (view) (download) (annotate) - [select for diffs]
Wed Aug 20 14:49:25 2003 UTC (20 years, 9 months ago) by dl
Branch: MAIN
Changes since 1.12: +44 -1 lines
Diff to previous 1.12
AtomicLinkedNode now an inner class of Concurrentlinkedqueue

Revision 1.12 - (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.11: +5 -10 lines
Diff to previous 1.11
Scrunched catch, finally, else clauses.

Revision 1.11 - (view) (download) (annotate) - [select for diffs]
Wed Aug 6 19:04:55 2003 UTC (20 years, 9 months ago) by tim
Branch: MAIN
CVS Tags: JSR166_CR1
Changes since 1.10: +2 -2 lines
Diff to previous 1.10
More DocCheck fixes.

Revision 1.10 - (view) (download) (annotate) - [select for diffs]
Wed Aug 6 18:42:49 2003 UTC (20 years, 9 months ago) by tim
Branch: MAIN
Changes since 1.9: +1 -1 lines
Diff to previous 1.9
Fixes to minor errors found by DocCheck, includes stray Locks reference removal

Revision 1.9 - (view) (download) (annotate) - [select for diffs]
Wed Aug 6 11:11:49 2003 UTC (20 years, 9 months ago) by dl
Branch: MAIN
Changes since 1.8: +5 -0 lines
Diff to previous 1.8
Clarify iterator semantics

Revision 1.8 - (view) (download) (annotate) - [select for diffs]
Wed Aug 6 10:28:23 2003 UTC (20 years, 9 months ago) by dl
Branch: MAIN
Changes since 1.7: +5 -2 lines
Diff to previous 1.7
Fixed SQ signatures; Fix CLQ.size

Revision 1.7 - (view) (download) (annotate) - [select for diffs]
Wed Aug 6 01:57:53 2003 UTC (20 years, 9 months ago) by dholmes
Branch: MAIN
Changes since 1.6: +37 -7 lines
Diff to previous 1.6
Final major updates to Collection related classes.

Revision 1.6 - (view) (download) (annotate) - [select for diffs]
Tue Aug 5 07:00:58 2003 UTC (20 years, 9 months ago) by dholmes
Branch: MAIN
Changes since 1.5: +51 -25 lines
Diff to previous 1.5
Brought in to line with doc updates on other queue implementations.

Revision 1.5 - (view) (download) (annotate) - [select for diffs]
Tue Aug 5 00:37:41 2003 UTC (20 years, 9 months ago) by dl
Branch: MAIN
Changes since 1.4: +10 -2 lines
Diff to previous 1.4
Kill old JSR166Support

Revision 1.4 - (view) (download) (annotate) - [select for diffs]
Mon Aug 4 12:46:34 2003 UTC (20 years, 9 months ago) by dl
Branch: MAIN
Changes since 1.3: +2 -2 lines
Diff to previous 1.3
Pass 1 of 1.5.0 changes

Revision 1.3 - (view) (download) (annotate) - [select for diffs]
Thu Jul 31 16:46:39 2003 UTC (20 years, 9 months ago) by tim
Branch: MAIN
Changes since 1.2: +4 -4 lines
Diff to previous 1.2
Fix unchecked calls to raw type

Revision 1.2 - (view) (download) (annotate) - [select for diffs]
Thu Jul 31 15:25:02 2003 UTC (20 years, 9 months ago) by tim
Branch: MAIN
Changes since 1.1: +28 -28 lines
Diff to previous 1.1
Collection constructor takes Collection<? extends E>

Revision 1.1 - (view) (download) (annotate) - [select for diffs]
Thu Jun 26 10:47:35 2003 UTC (20 years, 10 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_PRELIMINARY_TEST_RELEASE_2
Added "Concurrent" prefixes

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