diff options
Diffstat (limited to 'malloc/malloc.c')
-rw-r--r-- | malloc/malloc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/malloc/malloc.c b/malloc/malloc.c index 51db44f61b..6b789685ad 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -1673,7 +1673,8 @@ struct malloc_state int flags; /* Set if the fastbin chunks contain recently inserted free blocks. */ - bool have_fastchunks; + /* Note this is a bool but not all targets support atomics on booleans. */ + int have_fastchunks; /* Fastbins */ mfastbinptr fastbinsY[NFASTBINS]; |