xref: /src/contrib/jemalloc/src/exp_grow.c (revision c43cad87172039ccf38172129c79755ea79e6102)
1 #include "jemalloc/internal/jemalloc_preamble.h"
2 #include "jemalloc/internal/jemalloc_internal_includes.h"
3 
4 void
exp_grow_init(exp_grow_t * exp_grow)5 exp_grow_init(exp_grow_t *exp_grow) {
6 	exp_grow->next = sz_psz2ind(HUGEPAGE);
7 	exp_grow->limit = sz_psz2ind(SC_LARGE_MAXCLASS);
8 }
9