Add links to original mpmc and mpsc implementations
This commit is contained in:
parent
49d9135eea
commit
1ce5081f4d
@ -26,6 +26,8 @@
|
||||
* policies, either expressed or implied, of Dmitry Vyukov.
|
||||
*/
|
||||
|
||||
// http://www.1024cores.net/home/lock-free-algorithms/queues/bounded-mpmc-queue
|
||||
|
||||
use unstable::sync::UnsafeArc;
|
||||
use unstable::atomics::{AtomicUint,Relaxed,Release,Acquire};
|
||||
use option::*;
|
||||
|
@ -27,6 +27,7 @@
|
||||
*/
|
||||
|
||||
//! A mostly lock-free multi-producer, single consumer queue.
|
||||
// http://www.1024cores.net/home/lock-free-algorithms/queues/intrusive-mpsc-node-based-queue
|
||||
|
||||
use unstable::sync::UnsafeArc;
|
||||
use unstable::atomics::{AtomicPtr,Relaxed,Release,Acquire};
|
||||
|
Loading…
Reference in New Issue
Block a user