Add links to original mpmc and mpsc implementations

This commit is contained in:
Brian Anderson 2013-10-25 19:46:35 -07:00
parent 49d9135eea
commit 1ce5081f4d
2 changed files with 3 additions and 0 deletions

View File

@ -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::*;

View File

@ -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};