You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
293 B
12 lines
293 B
#ifndef JEMALLOC_INTERNAL_ARENA_STRUCTS_A_H
|
|
#define JEMALLOC_INTERNAL_ARENA_STRUCTS_A_H
|
|
|
|
#include "jemalloc/internal/bitmap.h"
|
|
|
|
struct arena_slab_data_s {
|
|
/* Per region allocated/deallocated bitmap. */
|
|
bitmap_t bitmap[BITMAP_GROUPS_MAX];
|
|
};
|
|
|
|
#endif /* JEMALLOC_INTERNAL_ARENA_STRUCTS_A_H */
|