f50d6009fe
binind is now redundant; the containing extent_t's szind field always provides the same value.
13 lines
311 B
C
13 lines
311 B
C
#ifndef JEMALLOC_INTERNAL_ARENA_STRUCTS_A_H
|
|
#define JEMALLOC_INTERNAL_ARENA_STRUCTS_A_H
|
|
|
|
struct arena_slab_data_s {
|
|
/* Number of free regions in slab. */
|
|
unsigned nfree;
|
|
|
|
/* Per region allocated/deallocated bitmap. */
|
|
bitmap_t bitmap[BITMAP_GROUPS_MAX];
|
|
};
|
|
|
|
#endif /* JEMALLOC_INTERNAL_ARENA_STRUCTS_A_H */
|