mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2024-10-01 01:36:01 -04:00
slightly reorganize slab metadata
This commit is contained in:
parent
3db3e167ed
commit
f11c448a0d
5
malloc.c
5
malloc.c
@ -123,8 +123,11 @@ static const size_t max_empty_slabs_total = 64 * 1024;
|
||||
|
||||
static struct size_class {
|
||||
struct mutex lock;
|
||||
|
||||
void *class_region_start;
|
||||
struct slab_metadata *slab_info;
|
||||
struct libdivide_u32_t size_divisor;
|
||||
struct libdivide_u64_t slab_size_divisor;
|
||||
|
||||
// slabs with at least one allocated slot and at least one free slot
|
||||
//
|
||||
@ -144,8 +147,6 @@ static struct size_class {
|
||||
struct slab_metadata *free_slabs_tail;
|
||||
struct slab_metadata *free_slabs_quarantine[FREE_SLABS_QUARANTINE_RANDOM_SIZE];
|
||||
|
||||
struct libdivide_u32_t size_divisor;
|
||||
struct libdivide_u64_t slab_size_divisor;
|
||||
struct random_state rng;
|
||||
size_t metadata_allocated;
|
||||
size_t metadata_count;
|
||||
|
Loading…
Reference in New Issue
Block a user