Skip to content
Snippets Groups Projects
Commit 06b6f68c authored by Avi Kivity's avatar Avi Kivity
Browse files

Increase the static malloc buffer, so we can defer having a real allocator

parent 7a711363
No related branches found
No related tags found
No related merge requests found
...@@ -124,7 +124,7 @@ void __cxa_pure_virtual(void) ...@@ -124,7 +124,7 @@ void __cxa_pure_virtual(void)
abort(); abort();
} }
static char malloc_buffer[1 << 24], *malloc_ptr = malloc_buffer; static char malloc_buffer[1 << 26], *malloc_ptr = malloc_buffer;
void *malloc(size_t size) void *malloc(size_t size)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment