mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-07-24 17:47:22 +03:00
s/chunk_lookup/extent_lookup/g, s/chunks_rtree/extents_rtree/g
This commit is contained in:
parent
4a55daa363
commit
0c4932eb1e
8 changed files with 55 additions and 44 deletions
|
|
@ -70,7 +70,7 @@ vsalloc(tsdn_t *tsdn, const void *ptr)
|
|||
{
|
||||
extent_t *extent;
|
||||
|
||||
extent = chunk_lookup(tsdn, ptr, false);
|
||||
extent = extent_lookup(tsdn, ptr, false);
|
||||
if (extent == NULL)
|
||||
return (0);
|
||||
if (!extent_active_get(extent))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue