about summary refs log tree commit diff
path: root/src/rt/rust_upcall.cpp
diff options
context:
space:
mode:
authorRafael Ávila de Espíndola <respindola@mozilla.com>2011-05-18 13:48:57 -0400
committerRafael Ávila de Espíndola <respindola@mozilla.com>2011-05-18 13:48:57 -0400
commitcebc9b359db16ea0370fb9f9013507a559e33bcd (patch)
tree2a935143c218ecbbecb3bbbb3ec2a35c9cdd85b1 /src/rt/rust_upcall.cpp
parentf4e049c41571617de62537aeaadefee9546c6816 (diff)
downloadrust-cebc9b359db16ea0370fb9f9013507a559e33bcd.tar.gz
rust-cebc9b359db16ea0370fb9f9013507a559e33bcd.zip
Remove dead rustboot code.
Diffstat (limited to 'src/rt/rust_upcall.cpp')
-rw-r--r--src/rt/rust_upcall.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rt/rust_upcall.cpp b/src/rt/rust_upcall.cpp
index 11dddce7346..a1569f07e45 100644
--- a/src/rt/rust_upcall.cpp
+++ b/src/rt/rust_upcall.cpp
@@ -578,7 +578,7 @@ upcall_start_task(rust_task *spawner,
              ", spawnee 0x%" PRIxPTR
              ", callsz %" PRIdPTR ")", task->name, task, exit_task_glue,
              spawnee_fn, callsz);
-    task->start(exit_task_glue, spawnee_abi, spawnee_fn,
+    task->start(exit_task_glue, spawnee_fn,
                 spawner->rust_sp, callsz);
     return task;
 }
@@ -642,7 +642,7 @@ upcall_start_thread(rust_task *task,
               ", callsz %" PRIdPTR ")",
               exit_task_glue, spawnee_fn, callsz);
     rust_task *child_task = child_task_handle->referent();
-    child_task->start(exit_task_glue, spawnee_abi, spawnee_fn,
+    child_task->start(exit_task_glue, spawnee_fn,
                       task->rust_sp, callsz);
 #if defined(__WIN32__)
     HANDLE thread;