File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,8 @@ be obeyed though. Features developed in `concurrent-ruby-edge` are expected to m
124
124
new synchronization layer to make all the paths lock-free with exception of blocking threads on ` #wait ` .
125
125
It offers better performance and does not block threads (exception being ` #wait ` and similar methods where it's
126
126
intended).
127
-
127
+ * [ Atomic Markable Reference] ( http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Edge/AtomicMarkableReference.html )
128
+ * [ Lock Free Linked Set] ( http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Edge/LockFreeLinkedSet.html )
128
129
129
130
#### Statuses:
130
131
@@ -135,7 +136,9 @@ be obeyed though. Features developed in `concurrent-ruby-edge` are expected to m
135
136
- ** Agent** - Incomplete behaviour compared to Clojure's models; stability good.
136
137
- ** Channel** - Missing documentation; limted features; stability good.
137
138
- ** Exchanger** - Known race condition requiring a new implementation.
138
- - ** LazyRegister** - Missing documentation and tests.
139
+ - ** LazyRegister** - Missing documentation and tests.
140
+ - ** AtomicMarkableReference** - Needs real world battle testing
141
+ - ** LockFreeLinkedSet** - Needs real world battle testing
139
142
140
143
## Usage
141
144
You can’t perform that action at this time.
0 commit comments