diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2013-02-14 18:28:04 -0500 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2013-02-14 18:28:04 -0500 |
| commit | 1a41b484bf05514f469e69efd56fcd7039d34db9 (patch) | |
| tree | 7919895f900eeab44123a9bac38b38bdcb591d3a /src/rt/rust_task.cpp | |
| parent | 2e0614750c398c9aac2f4064addb2fa95ba32282 (diff) | |
| download | rust-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.cpp | 5 |
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); |
