diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-12-13 14:24:13 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-12-13 14:24:13 +0100 |
commit | ebd3e2890cad3fbc9b0293b91173995d191ee804 (patch) | |
tree | 1403948c291306274baa38f11b7a9f77a56fb809 /src/lib | |
parent | 6d8a58ae50c46531512ac6930d95f7ec2d6679c3 (diff) |
mpmalloc
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/mpmalloc.cc | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/lib/mpmalloc.cc b/src/lib/mpmalloc.cc new file mode 100644 index 0000000..db4a87a --- /dev/null +++ b/src/lib/mpmalloc.cc @@ -0,0 +1,28 @@ +#include <stdlib.h> +#include "driver/stdout.h" +#include "lib/mpmalloc.h" + +void* mpcalloc(size_t nmemb, size_t size) { + void* ret = calloc(nmemb, size); +#ifdef ADDR_20BIT + kout << "calloc:" << dec << (uint32_t)nmemb << "x" << (uint32_t)size << "@" << ret << endl; +#else + kout << "calloc:" << dec << nmemb << "x" << size << "@" << ret << endl; +#endif + return ret; +} + +void* mpmalloc(size_t size) { + void* ret = malloc(size); +#ifdef ADDR_20BIT + kout << "malloc:" << dec << (uint32_t)size << "@" << ret << endl; +#else + kout << "malloc:" << dec << size << "@" << ret << endl; +#endif + return ret; +} + +void mpfree(void* addr) { + kout << "free:" << addr << endl; + free(addr); +} |