From f18caf67d7a3439dff2871fa390eadd10ee8895b Mon Sep 17 00:00:00 2001 From: Daan Leijen Date: Thu, 9 Dec 2021 14:29:18 -0800 Subject: [PATCH] change padding extra to 128 --- include/mimalloc-types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/mimalloc-types.h b/include/mimalloc-types.h index bc522c15..bfdca4cc 100644 --- a/include/mimalloc-types.h +++ b/include/mimalloc-types.h @@ -61,7 +61,7 @@ terms of the MIT license. A copy of the license can be found in the file #endif #if !defined(MI_PADDING_EXTRA) // use extra padding bytes? -#define MI_PADDING_EXTRA (664) +#define MI_PADDING_EXTRA (128) #endif #if !defined(MI_DEBUG_TRACE) // store stack trace at each allocation @@ -69,7 +69,7 @@ terms of the MIT license. A copy of the license can be found in the file #endif #if !defined(MI_DEBUG_TRACE_LEN) // store stack trace at each allocation -#define MI_DEBUG_TRACE_LEN (6) // store up to N frames +#define MI_DEBUG_TRACE_LEN (8) // store up to N frames #endif