From 06b6f68ce274d73f334cdf8145838a172bb53319 Mon Sep 17 00:00:00 2001 From: Avi Kivity <avi.kivity@gmail.com> Date: Wed, 12 Dec 2012 16:28:37 +0200 Subject: [PATCH] Increase the static malloc buffer, so we can defer having a real allocator --- runtime.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime.cc b/runtime.cc index 03d7449cd..b62102670 100644 --- a/runtime.cc +++ b/runtime.cc @@ -124,7 +124,7 @@ void __cxa_pure_virtual(void) 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) { -- GitLab