Home
last modified time | relevance | path

Searched refs:dalloc_tctx (Results 1 – 2 of 2) sorted by relevance

/src/contrib/jemalloc/src/
H A Dprof_recent.c206 prof_tctx_t *dalloc_tctx = prof_tctx_create(tsd); in prof_recent_alloc_reset() local
213 if (dalloc_tctx != NULL) { in prof_recent_alloc_reset()
214 malloc_mutex_lock(tsd_tsdn(tsd), dalloc_tctx->tdata->lock); in prof_recent_alloc_reset()
215 increment_recent_count(tsd, dalloc_tctx); in prof_recent_alloc_reset()
216 dalloc_tctx->prepared = false; in prof_recent_alloc_reset()
217 malloc_mutex_unlock(tsd_tsdn(tsd), dalloc_tctx->tdata->lock); in prof_recent_alloc_reset()
225 assert(recent->dalloc_tctx == NULL); in prof_recent_alloc_reset()
226 if (dalloc_tctx != NULL) { in prof_recent_alloc_reset()
228 recent->dalloc_tctx = dalloc_tctx; in prof_recent_alloc_reset()
229 dalloc_tctx = NULL; in prof_recent_alloc_reset()
[all …]
/src/contrib/jemalloc/include/jemalloc/internal/
H A Dprof_structs.h218 prof_tctx_t *dalloc_tctx; member