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