about summary refs log tree commit diff
path: root/src/rt/rust_task.cpp
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2013-02-14 18:28:04 -0500
committerDaniel Micay <danielmicay@gmail.com>2013-02-14 18:28:04 -0500
commit1a41b484bf05514f469e69efd56fcd7039d34db9 (patch)
tree7919895f900eeab44123a9bac38b38bdcb591d3a /src/rt/rust_task.cpp
parent2e0614750c398c9aac2f4064addb2fa95ba32282 (diff)
downloadrust-1a41b484bf05514f469e69efd56fcd7039d34db9.tar.gz
rust-1a41b484bf05514f469e69efd56fcd7039d34db9.zip
rm the unused calloc wrapper from memory_region
it doesn't actually call calloc, so it's fairly pointless
Diffstat (limited to 'src/rt/rust_task.cpp')
-rw-r--r--src/rt/rust_task.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/rt/rust_task.cpp b/src/rt/rust_task.cpp
index e51af464e48..63dc1c9833e 100644
--- a/src/rt/rust_task.cpp
+++ b/src/rt/rust_task.cpp
@@ -450,11 +450,6 @@ rust_task::backtrace() {
 #endif
 }
 
-void *
-rust_task::calloc(size_t size, const char *tag) {
-    return local_region.calloc(size, tag);
-}
-
 size_t
 rust_task::get_next_stack_size(size_t min, size_t current, size_t requested) {
     LOG(this, mem, "calculating new stack size for 0x%" PRIxPTR, this);