PA: Have expand take szind and slab.

This isn't really necessary, but having a uniform API will help us later.
This commit is contained in:
David Goldblatt
2020-03-10 17:21:04 -07:00
committed by David Goldblatt
parent 0880c2ab97
commit 5bcc2c2ab9
3 changed files with 7 additions and 6 deletions

View File

@@ -122,7 +122,8 @@ size_t pa_shard_extent_sn_next(pa_shard_t *shard);
edata_t *pa_alloc(tsdn_t *tsdn, pa_shard_t *shard, size_t size,
size_t alignment, bool slab, szind_t szind, bool *zero, size_t *mapped_add);
/* Returns true on error, in which case nothing changed. */
bool pa_expand(tsdn_t *tsdn, pa_shard_t *shard, edata_t *edata,
size_t new_usize, bool *zero, size_t *mapped_add);
bool
pa_expand(tsdn_t *tsdn, pa_shard_t *shard, edata_t *edata, size_t new_usize,
szind_t szind, bool slab, bool *zero, size_t *mapped_add);
#endif /* JEMALLOC_INTERNAL_PA_H */