From 68fc2ccc1aebc15b92e596b2bdc5605da1e25f3c Mon Sep 17 00:00:00 2001 From: Siddhesh Poyarekar Date: Wed, 26 Oct 2016 15:07:33 +0530 Subject: Remove redundant definitions of M_ARENA_* macros The M_ARENA_MAX and M_ARENA_TEST macros are defined in malloc.c as well as malloc.h, and the former is unnecessary. This patch removes the duplicate. Tested on x86_64 to verify that the generated code remains unchanged barring changed line numbers to __malloc_assert. * malloc/malloc.c (M_ARENA_TEST, M_ARENA_MAX): Remove. --- malloc/malloc.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'malloc/malloc.c') diff --git a/malloc/malloc.c b/malloc/malloc.c index a849901fab..e336e38d66 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -1717,11 +1717,6 @@ static struct malloc_par mp_ = .arena_test = NARENAS_FROM_NCORES (1) }; - -#define M_ARENA_TEST -7 -#define M_ARENA_MAX -8 - - /* Maximum size of memory handled in fastbins. */ static INTERNAL_SIZE_T global_max_fast; -- cgit v1.2.3