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