2019-09-21 07:36:42 +08:00
|
|
|
#ifndef JEMALLOC_INTERNAL_SLAB_DATA_H
|
|
|
|
#define JEMALLOC_INTERNAL_SLAB_DATA_H
|
|
|
|
|
2023-06-10 08:37:47 +08:00
|
|
|
#include "jemalloc/internal/jemalloc_preamble.h"
|
2019-09-21 07:36:42 +08:00
|
|
|
#include "jemalloc/internal/bitmap.h"
|
|
|
|
|
|
|
|
typedef struct slab_data_s slab_data_t;
|
|
|
|
struct slab_data_s {
|
|
|
|
/* Per region allocated/deallocated bitmap. */
|
|
|
|
bitmap_t bitmap[BITMAP_GROUPS_MAX];
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* JEMALLOC_INTERNAL_SLAB_DATA_H */
|