1 #ifndef JEMALLOC_INTERNAL_ARENA_STRUCTS_A_H
2 #define JEMALLOC_INTERNAL_ARENA_STRUCTS_A_H
3 
4 struct arena_slab_data_s {
5 	/* Index of bin this slab is associated with. */
6 	szind_t		binind;
7 
8 	/* Number of free regions in slab. */
9 	unsigned	nfree;
10 
11 	/* Per region allocated/deallocated bitmap. */
12 	bitmap_t	bitmap[BITMAP_GROUPS_MAX];
13 };
14 
15 #endif /* JEMALLOC_INTERNAL_ARENA_STRUCTS_A_H */
16