mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-04-19 17:01:15 +03:00
Un-force-inline do_rallocx.
The additional overhead of the function-call setup and flags checking is relatively small, but costs us the replication of the entire realloc pathway in terms of size.
This commit is contained in:
parent
a9fa2defdb
commit
f9bb8dedef
1 changed files with 1 additions and 1 deletions
|
|
@ -3418,7 +3418,7 @@ irallocx_prof(tsd_t *tsd, void *old_ptr, size_t old_usize, size_t size,
|
|||
return p;
|
||||
}
|
||||
|
||||
JEMALLOC_ALWAYS_INLINE void *
|
||||
static void *
|
||||
do_rallocx(void *ptr, size_t size, int flags, bool is_realloc) {
|
||||
void *p;
|
||||
tsd_t *tsd;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue