mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-05-15 17:36:21 +03:00
Remove duplicate logging in malloc.
This commit is contained in:
parent
4aea743279
commit
40672b0b78
1 changed files with 5 additions and 1 deletions
|
|
@ -2437,7 +2437,11 @@ malloc_default(size_t size) {
|
|||
static_opts_t sopts;
|
||||
dynamic_opts_t dopts;
|
||||
|
||||
LOG("core.malloc.entry", "size: %zu", size);
|
||||
/*
|
||||
* This variant has logging hook on exit but not on entry. It's callled
|
||||
* only by je_malloc, below, which emits the entry one for us (and, if
|
||||
* it calls us, does so only via tail call).
|
||||
*/
|
||||
|
||||
static_opts_init(&sopts);
|
||||
dynamic_opts_init(&dopts);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue