1*8e33eff8Schristos #ifndef JEMALLOC_INTERNAL_ARENA_STRUCTS_A_H 2*8e33eff8Schristos #define JEMALLOC_INTERNAL_ARENA_STRUCTS_A_H 3*8e33eff8Schristos 4*8e33eff8Schristos #include "jemalloc/internal/bitmap.h" 5*8e33eff8Schristos 6*8e33eff8Schristos struct arena_slab_data_s { 7*8e33eff8Schristos /* Per region allocated/deallocated bitmap. */ 8*8e33eff8Schristos bitmap_t bitmap[BITMAP_GROUPS_MAX]; 9*8e33eff8Schristos }; 10*8e33eff8Schristos 11*8e33eff8Schristos #endif /* JEMALLOC_INTERNAL_ARENA_STRUCTS_A_H */ 12