Skip to content

Commit 4036614

Browse files
committed
Patching malloc: increasing __malloc_margin to 128
1 parent 83129ef commit 4036614

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
--- a/libc/stdlib/malloc.c 2014-02-21 17:03:40.606098680 +0100
2+
+++ b/libc/stdlib/malloc.c 2014-02-21 17:03:51.946098314 +0100
3+
@@ -56,7 +56,7 @@
4+
5+
/* May be changed by the user only before the first malloc() call. */
6+
7+
-size_t __malloc_margin = 32;
8+
+size_t __malloc_margin = 128;
9+
char *__malloc_heap_start = &__heap_start;
10+
char *__malloc_heap_end = &__heap_end;
11+

0 commit comments

Comments
 (0)