Miscellaneous cleanups.
This commit is contained in:
@@ -1243,7 +1243,7 @@ imalloc_prof(tsd_t *tsd, size_t usize)
|
||||
p = imalloc_prof_sample(tsd, usize, tctx);
|
||||
else
|
||||
p = imalloc(tsd, usize);
|
||||
if (p == NULL) {
|
||||
if (unlikely(p == NULL)) {
|
||||
prof_alloc_rollback(tsd, tctx, true);
|
||||
return (NULL);
|
||||
}
|
||||
@@ -1329,7 +1329,7 @@ imemalign_prof(tsd_t *tsd, size_t alignment, size_t usize)
|
||||
p = imemalign_prof_sample(tsd, alignment, usize, tctx);
|
||||
else
|
||||
p = ipalloc(tsd, usize, alignment, false);
|
||||
if (p == NULL) {
|
||||
if (unlikely(p == NULL)) {
|
||||
prof_alloc_rollback(tsd, tctx, true);
|
||||
return (NULL);
|
||||
}
|
||||
@@ -1457,7 +1457,7 @@ icalloc_prof(tsd_t *tsd, size_t usize)
|
||||
p = icalloc_prof_sample(tsd, usize, tctx);
|
||||
else
|
||||
p = icalloc(tsd, usize);
|
||||
if (p == NULL) {
|
||||
if (unlikely(p == NULL)) {
|
||||
prof_alloc_rollback(tsd, tctx, true);
|
||||
return (NULL);
|
||||
}
|
||||
|
@@ -204,7 +204,9 @@ prof_alloc_rollback(tsd_t *tsd, prof_tctx_t *tctx, bool updated)
|
||||
}
|
||||
|
||||
void
|
||||
prof_malloc_sample_object(const void *ptr, size_t usize, prof_tctx_t *tctx) {
|
||||
prof_malloc_sample_object(const void *ptr, size_t usize, prof_tctx_t *tctx)
|
||||
{
|
||||
|
||||
prof_tctx_set(ptr, tctx);
|
||||
|
||||
malloc_mutex_lock(tctx->tdata->lock);
|
||||
|
Reference in New Issue
Block a user