get rid of unused exchange_alloc calloc method

this isn't actually calloc - it calls the malloc wrapper which no
longer zeroes
This commit is contained in:
Daniel Micay 2013-02-14 18:13:25 -05:00
parent f2f4edd8a7
commit 2e0614750c
4 changed files with 0 additions and 12 deletions

View file

@ -27,11 +27,6 @@ rust_exchange_alloc::malloc(size_t size) {
return value;
}
void *
rust_exchange_alloc::calloc(size_t size) {
return this->malloc(size);
}
void *
rust_exchange_alloc::realloc(void *ptr, size_t size) {
void *new_ptr = ::realloc(ptr, size);

View file

@ -17,7 +17,6 @@
class rust_exchange_alloc {
public:
void *malloc(size_t size);
void *calloc(size_t size);
void *realloc(void *mem, size_t size);
void free(void *mem);
};

View file

@ -79,11 +79,6 @@ rust_kernel::malloc(size_t size, const char *tag) {
return exchange_alloc.malloc(size);
}
void *
rust_kernel::calloc(size_t size, const char *tag) {
return exchange_alloc.calloc(size);
}
void *
rust_kernel::realloc(void *mem, size_t size) {
return exchange_alloc.realloc(mem, size);

View file

@ -133,7 +133,6 @@ public:
void fatal(char const *fmt, ...);
void *malloc(size_t size, const char *tag);
void *calloc(size_t size, const char *tag);
void *realloc(void *mem, size_t size);
void free(void *mem);
rust_exchange_alloc *region() { return &exchange_alloc; }