diff options
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index 5cfcda2e1e0..2f186fd3d12 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -1238,7 +1238,8 @@ emacs_blocked_malloc (size, ptr) | |||
| 1238 | BLOCK_INPUT_ALLOC; | 1238 | BLOCK_INPUT_ALLOC; |
| 1239 | __malloc_hook = old_malloc_hook; | 1239 | __malloc_hook = old_malloc_hook; |
| 1240 | #ifdef DOUG_LEA_MALLOC | 1240 | #ifdef DOUG_LEA_MALLOC |
| 1241 | mallopt (M_TOP_PAD, malloc_hysteresis * 4096); | 1241 | /* Segfaults on my system. --lorentey */ |
| 1242 | /* mallopt (M_TOP_PAD, malloc_hysteresis * 4096); */ | ||
| 1242 | #else | 1243 | #else |
| 1243 | __malloc_extra_blocks = malloc_hysteresis; | 1244 | __malloc_extra_blocks = malloc_hysteresis; |
| 1244 | #endif | 1245 | #endif |