diff options
author | Jason Evans <jasone@canonware.com> | 2017-03-20 18:00:07 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2017-03-23 01:33:32 (GMT) |
commit | 5e67fbc367dfe6a08f065167f831d5aa0316554f (patch) | |
tree | 5f6ab6454af63594d9a230c0256002cf629782cc /include/jemalloc/internal/prof_externs.h | |
parent | 51a2ec92a10691bf5cee78093a0aa9a1fced351d (diff) | |
download | jemalloc-5e67fbc367dfe6a08f065167f831d5aa0316554f.zip jemalloc-5e67fbc367dfe6a08f065167f831d5aa0316554f.tar.gz jemalloc-5e67fbc367dfe6a08f065167f831d5aa0316554f.tar.bz2 |
Push down iealloc() calls.
Call iealloc() as deep into call chains as possible without causing
redundant calls.
Diffstat (limited to 'include/jemalloc/internal/prof_externs.h')
-rw-r--r-- | include/jemalloc/internal/prof_externs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/jemalloc/internal/prof_externs.h b/include/jemalloc/internal/prof_externs.h index f3b6f8d..985532f 100644 --- a/include/jemalloc/internal/prof_externs.h +++ b/include/jemalloc/internal/prof_externs.h @@ -39,8 +39,8 @@ extern uint64_t prof_interval; extern size_t lg_prof_sample; void prof_alloc_rollback(tsd_t *tsd, prof_tctx_t *tctx, bool updated); -void prof_malloc_sample_object(tsdn_t *tsdn, extent_t *extent, - const void *ptr, size_t usize, prof_tctx_t *tctx); +void prof_malloc_sample_object(tsdn_t *tsdn, const void *ptr, size_t usize, + prof_tctx_t *tctx); void prof_free_sampled_object(tsd_t *tsd, size_t usize, prof_tctx_t *tctx); void bt_init(prof_bt_t *bt, void **vec); void prof_backtrace(prof_bt_t *bt); |