about summary refs log tree commit diff
path: root/src/rt/rust_builtin.cpp
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2011-11-10 15:36:09 -0800
committerBrian Anderson <banderson@mozilla.com>2011-11-10 15:36:09 -0800
commit0dc83879958ed008b4be9decf2efaa2be6c7eea3 (patch)
tree578b0f3241c3041ab92113406cdc91a916a767be /src/rt/rust_builtin.cpp
parent2e8ebb7c27f45b677c07c8edb960c1f7ff04e20c (diff)
downloadrust-0dc83879958ed008b4be9decf2efaa2be6c7eea3.tar.gz
rust-0dc83879958ed008b4be9decf2efaa2be6c7eea3.zip
rt: Remove chan_send. Unused.
Diffstat (limited to 'src/rt/rust_builtin.cpp')
-rw-r--r--src/rt/rust_builtin.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/rt/rust_builtin.cpp b/src/rt/rust_builtin.cpp
index 53650beea38..36912ae428d 100644
--- a/src/rt/rust_builtin.cpp
+++ b/src/rt/rust_builtin.cpp
@@ -518,11 +518,6 @@ void drop_port(rust_port *port) {
     port->ref_count--;
 }
 
-extern "C" CDECL
-void chan_send(rust_chan *chan, void *sptr) {
-    chan->send(sptr);
-}
-
 extern "C" CDECL void
 chan_id_send(type_desc *t, rust_task_id target_task_id,
              rust_port_id target_port_id, void *sptr) {