remove usage of ATOMIC_VAR_INIT
This was never truly required in practice and has been officially obsoleted in C17.pull/65/head
parent
65a7014b48
commit
3db3e167ed
4
malloc.c
4
malloc.c
|
@ -44,9 +44,7 @@ static union {
|
||||||
atomic_bool initialized;
|
atomic_bool initialized;
|
||||||
};
|
};
|
||||||
char padding[PAGE_SIZE];
|
char padding[PAGE_SIZE];
|
||||||
} ro __attribute__((aligned(PAGE_SIZE))) = {
|
} ro __attribute__((aligned(PAGE_SIZE)));
|
||||||
.initialized = ATOMIC_VAR_INIT(false)
|
|
||||||
};
|
|
||||||
|
|
||||||
struct slab_metadata {
|
struct slab_metadata {
|
||||||
u64 bitmap[4];
|
u64 bitmap[4];
|
||||||
|
|
Loading…
Reference in New Issue