This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
Re: [PATCH] Remove do_set_mallopt_check prototype
- From: Carlos O'Donell <codonell at redhat dot com>
- To: "H.J. Lu" <hjl dot tools at gmail dot com>, libc-alpha at sourceware dot org
- Date: Tue, 23 Apr 2019 15:43:39 -0400
- Subject: Re: [PATCH] Remove do_set_mallopt_check prototype
- References: <20190423193919.19928-1-hjl.tools@gmail.com>
On 4/23/19 3:39 PM, H.J. Lu wrote:
Remove do_set_mallopt_check prototype since it is unused.
* malloc/arena.c (do_set_mallopt_check): Removed.
---
LGTM.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
malloc/arena.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/malloc/arena.c b/malloc/arena.c
index 10a77b0232..8340b20b56 100644
--- a/malloc/arena.c
+++ b/malloc/arena.c
@@ -207,7 +207,6 @@ __malloc_fork_unlock_child (void)
}
#if HAVE_TUNABLES
-static inline int do_set_mallopt_check (int32_t value);
OK. malloc/malloc.c has the function and uses it there, but we
don't use it here anymore.
void
TUNABLE_CALLBACK (set_mallopt_check) (tunable_val_t *valp)
{
--
Cheers,
Carlos.