about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGary M. Josack <gary@byoteki.com>2014-05-03 16:53:26 -0700
committerGary M. Josack <gary@byoteki.com>2014-05-03 18:39:52 -0700
commit9246682b061e80c954e93e22484236f9d3def80f (patch)
tree0c1d60d8de142e5267f1214ed462f0a7f2e26849
parent4f1b0b5199085b95d4e33021ebeecde377e6d756 (diff)
downloadrust-9246682b061e80c954e93e22484236f9d3def80f.tar.gz
rust-9246682b061e80c954e93e22484236f9d3def80f.zip
Remove/Update dead links on Tasks guide.
-rw-r--r--src/doc/guide-tasks.md13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/doc/guide-tasks.md b/src/doc/guide-tasks.md
index e6eb4f235e5..bbfcf06065a 100644
--- a/src/doc/guide-tasks.md
+++ b/src/doc/guide-tasks.md
@@ -48,13 +48,7 @@ concurrency at this writing:
 * [`std::task`] - All code relating to tasks and task scheduling,
 * [`std::comm`] - The message passing interface,
 * [`sync::DuplexStream`] - An extension of `pipes::stream` that allows both sending and receiving,
-* [`sync::SyncSender`] - An extension of `pipes::stream` that provides synchronous message sending,
-* [`sync::SyncReceiver`] - An extension of `pipes::stream` that acknowledges each message received,
-* [`sync::rendezvous`] - Creates a stream whose channel, upon sending a message, blocks until the
-    message is received.
 * [`sync::Arc`] - The Arc (atomically reference counted) type, for safely sharing immutable data,
-* [`sync::RWArc`] - A dual-mode Arc protected by a reader-writer lock,
-* [`sync::MutexArc`] - An Arc with mutable data protected by a blocking mutex,
 * [`sync::Semaphore`] - A counting, blocking, bounded-waiting semaphore,
 * [`sync::Mutex`] - A blocking, bounded-waiting, mutual exclusion lock with an associated
     FIFO condition variable,
@@ -70,13 +64,8 @@ concurrency at this writing:
 [`std::task`]: std/task/index.html
 [`std::comm`]: std/comm/index.html
 [`sync::DuplexStream`]: sync/struct.DuplexStream.html
-[`sync::SyncSender`]: sync/struct.SyncSender.html
-[`sync::SyncReceiver`]: sync/struct.SyncReceiver.html
-[`sync::rendezvous`]: sync/fn.rendezvous.html
 [`sync::Arc`]: sync/struct.Arc.html
-[`sync::RWArc`]: sync/struct.RWArc.html
-[`sync::MutexArc`]: sync/struct.MutexArc.html
-[`sync::Semaphore`]: sync/struct.Semaphore.html
+[`sync::Semaphore`]: sync/raw/struct.Semaphore.html
 [`sync::Mutex`]: sync/struct.Mutex.html
 [`sync::RWLock`]: sync/struct.RWLock.html
 [`sync::Barrier`]: sync/struct.Barrier.html