about summary refs log tree commit diff
path: root/src/rt/rust_upcall.cpp
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2012-09-25 12:13:20 -0700
committerPatrick Walton <pcwalton@mimiga.net>2012-09-25 12:13:20 -0700
commitf813f519a5cecfd988cf238277021662afaff34a (patch)
treeee4a83ac7db42b86dd1d1530e8d339651762f727 /src/rt/rust_upcall.cpp
parentac822a52be47579ffa59d5ca3e125680a79545d0 (diff)
downloadrust-f813f519a5cecfd988cf238277021662afaff34a.tar.gz
rust-f813f519a5cecfd988cf238277021662afaff34a.zip
rt: Remove the cycle collector
Diffstat (limited to 'src/rt/rust_upcall.cpp')
-rw-r--r--src/rt/rust_upcall.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/rt/rust_upcall.cpp b/src/rt/rust_upcall.cpp
index e59c1b2b8c7..58887a3afe9 100644
--- a/src/rt/rust_upcall.cpp
+++ b/src/rt/rust_upcall.cpp
@@ -8,7 +8,6 @@
 
 #include "rust_globals.h"
 #include "rust_task.h"
-#include "rust_cc.h"
 #include "rust_sched_loop.h"
 #include "rust_unwind.h"
 #include "rust_upcall.h"
@@ -225,8 +224,6 @@ upcall_s_malloc(s_malloc_args *args) {
     LOG_UPCALL_ENTRY(task);
     LOG(task, mem, "upcall malloc(0x%" PRIxPTR ")", args->td);
 
-    cc::maybe_cc(task);
-
     // FIXME--does this have to be calloc? (Issue #2682)
     rust_opaque_box *box = task->boxed.calloc(args->td, args->size);
     void *body = box_body(box);