mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
Run without SimpleMalloc locally for now.
This commit is contained in:
parent
0dac2c2b7f
commit
a181a8f6e7
Notes:
sideshowbarker
2024-07-19 18:51:23 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/a181a8f6e79
3 changed files with 35 additions and 0 deletions
1
AK/.gitignore
vendored
1
AK/.gitignore
vendored
|
@ -1 +1,2 @@
|
|||
akit-test
|
||||
*.o
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
#include "Assertions.h"
|
||||
#include "OwnPtr.h"
|
||||
#include "kmalloc.h"
|
||||
#include <new>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
|
|
@ -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…
Reference in a new issue