mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 08:34:57 +00:00
Run without SimpleMalloc locally for now.
This commit is contained in:
parent
0dac2c2b7f
commit
a181a8f6e7
3 changed files with 35 additions and 0 deletions
|
@ -1,6 +1,37 @@
|
|||
#include <cstdio>
|
||||
#include "SimpleMalloc.h"
|
||||
#include <new>
|
||||
#include <cstdlib>
|
||||
|
||||
#define USE_SYSTEM_MALLOC
|
||||
|
||||
#ifdef USE_SYSTEM_MALLOC
|
||||
|
||||
extern "C" {
|
||||
|
||||
void* kcalloc(dword nmemb, dword size)
|
||||
{
|
||||
return calloc(nmemb, size);
|
||||
}
|
||||
|
||||
void* kmalloc(dword size)
|
||||
{
|
||||
return malloc(size);
|
||||
}
|
||||
|
||||
void kfree(void* ptr)
|
||||
{
|
||||
free(ptr);
|
||||
}
|
||||
|
||||
void* krealloc(void* ptr, dword size)
|
||||
{
|
||||
return realloc(ptr, size);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
extern "C" {
|
||||
|
||||
|
@ -64,3 +95,5 @@ void operator delete[](void* ptr, size_t)
|
|||
return kfree(ptr);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue