about summary refs log tree commit diff
path: root/src/rt/rust_task.cpp
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2011-12-20 20:01:50 -0800
committerBrian Anderson <banderson@mozilla.com>2011-12-20 20:02:57 -0800
commit128621be97d425a1d19e6640c8aee4fb6fca430b (patch)
tree1e9173e5cd73484caa79df066b76b4fb44abf44e /src/rt/rust_task.cpp
parent2841ce78221f7d6554ea5da249a5f0f8ffef416a (diff)
downloadrust-128621be97d425a1d19e6640c8aee4fb6fca430b.tar.gz
rust-128621be97d425a1d19e6640c8aee4fb6fca430b.zip
rt: Remove rust_task::grow. Obsolete
Diffstat (limited to 'src/rt/rust_task.cpp')
-rw-r--r--src/rt/rust_task.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/rt/rust_task.cpp b/src/rt/rust_task.cpp
index 6949df03f43..2e6c41a8e79 100644
--- a/src/rt/rust_task.cpp
+++ b/src/rt/rust_task.cpp
@@ -397,16 +397,6 @@ void rust_task::start()
     sched->lock.signal();
 }
 
-void
-rust_task::grow(size_t n_frame_bytes)
-{
-    // FIXME (issue #151): Just fail rather than almost certainly crashing
-    // mysteriously later. The commented-out logic below won't work at all in
-    // the presence of non-word-aligned pointers.
-    abort();
-
-}
-
 // Only run this on the rust stack
 void
 rust_task::yield(size_t time_in_us, bool *killed) {