mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-05-03 10:37:52 +03:00
Remove arena_malloc_prechosen().
Remove arena_malloc_prechosen(), now that arena_malloc() can be invoked in a way that is semantically equivalent.
This commit is contained in:
parent
b147611b52
commit
fad100bc35
2 changed files with 1 additions and 15 deletions
|
|
@ -14,7 +14,7 @@ malloc_tsd_malloc(size_t size)
|
|||
{
|
||||
|
||||
/* Avoid choose_arena() in order to dodge bootstrapping issues. */
|
||||
return arena_malloc_prechosen(arenas[0], size, false);
|
||||
return arena_malloc(arenas[0], size, false, false);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue