about summary refs log tree commit diff
path: root/src/libstd/sync.rs
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-08-28 11:11:15 -0700
committerBrian Anderson <banderson@mozilla.com>2012-08-28 14:33:18 -0700
commitcfbc7cbdc7cd09490c7c723758329b5ba78e5f9f (patch)
tree404292a41b0f966a85bfe123a97487a8c8ef9626 /src/libstd/sync.rs
parente9b7ce6f57e8ca74dfdb16ba91fcae38d2c44798 (diff)
downloadrust-cfbc7cbdc7cd09490c7c723758329b5ba78e5f9f.tar.gz
rust-cfbc7cbdc7cd09490c7c723758329b5ba78e5f9f.zip
Convert core::pipes to camel case
Diffstat (limited to 'src/libstd/sync.rs')
-rw-r--r--src/libstd/sync.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libstd/sync.rs b/src/libstd/sync.rs
index a1416177a6a..5e35454da84 100644
--- a/src/libstd/sync.rs
+++ b/src/libstd/sync.rs
@@ -19,13 +19,13 @@ import unsafe::{Exclusive, exclusive};
 
 // Each waiting task receives on one of these.
 #[doc(hidden)]
-type WaitEnd = pipes::port_one<()>;
+type WaitEnd = pipes::PortOne<()>;
 #[doc(hidden)]
-type SignalEnd = pipes::chan_one<()>;
+type SignalEnd = pipes::ChanOne<()>;
 // A doubly-ended queue of waiting tasks.
 #[doc(hidden)]
-struct Waitqueue { head: pipes::port<SignalEnd>;
-                   tail: pipes::chan<SignalEnd>; }
+struct Waitqueue { head: pipes::Port<SignalEnd>;
+                   tail: pipes::Chan<SignalEnd>; }
 
 fn new_waitqueue() -> Waitqueue {
     let (block_tail, block_head) = pipes::stream();
@@ -928,8 +928,8 @@ mod tests {
             assert woken == 0;
         }
         struct SendOnFailure {
-            c: pipes::chan<()>;
-            new(+c: pipes::chan<()>) { self.c = c; }
+            c: pipes::Chan<()>;
+            new(+c: pipes::Chan<()>) { self.c = c; }
             drop { self.c.send(()); }
         }
     }