2017-01-11 10:06:31 +08:00
|
|
|
#ifndef JEMALLOC_INTERNAL_ARENA_STRUCTS_A_H
|
|
|
|
#define JEMALLOC_INTERNAL_ARENA_STRUCTS_A_H
|
|
|
|
|
2017-04-21 05:32:24 +08:00
|
|
|
#include "jemalloc/internal/bitmap.h"
|
|
|
|
|
2017-01-11 10:06:31 +08:00
|
|
|
struct arena_slab_data_s {
|
|
|
|
/* Per region allocated/deallocated bitmap. */
|
|
|
|
bitmap_t bitmap[BITMAP_GROUPS_MAX];
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* JEMALLOC_INTERNAL_ARENA_STRUCTS_A_H */
|