Home | History | Annotate | Line # | Download | only in internal
      1 #ifndef JEMALLOC_INTERNAL_SLAB_DATA_H
      2 #define JEMALLOC_INTERNAL_SLAB_DATA_H
      3 
      4 #include "jemalloc/internal/bitmap.h"
      5 
      6 typedef struct slab_data_s slab_data_t;
      7 struct slab_data_s {
      8 	/* Per region allocated/deallocated bitmap. */
      9 	bitmap_t bitmap[BITMAP_GROUPS_MAX];
     10 };
     11 
     12 #endif /* JEMALLOC_INTERNAL_SLAB_DATA_H */
     13