Skip to content

Commit f498906

Browse files
committed
clang format
1 parent 23c3f85 commit f498906

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

include/iso_alloc_internal.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -361,15 +361,15 @@ typedef struct {
361361
uint64_t pointer_mask; /* Each zone has its own pointer protection secret */
362362
uint32_t chunk_size; /* Size of chunks managed by this zone */
363363
uint32_t bitmap_size; /* Size of the bitmap in bytes */
364-
bitmap_index_t max_bitmap_idx;
365-
bool internal; /* Zones can be managed by iso_alloc or private */
366-
bool is_full; /* Flags whether this zone is full to avoid bit slot searches */
367-
uint16_t index; /* Zone index */
368-
uint16_t next_sz_index; /* What is the index of the next zone of this size */
369-
uint32_t alloc_count; /* Total number of lifetime allocations */
370-
uint32_t af_count; /* Increment/Decrement with each alloc/free operation */
371-
uint32_t chunk_count; /* Total number of chunks in this zone */
372-
uint8_t chunk_size_pow2; /* Computed by _log2(chunk_size) at zone creation */
364+
bitmap_index_t max_bitmap_idx; /* Max bitmap index for this bitmap */
365+
bool internal; /* Zones can be managed by iso_alloc or private */
366+
bool is_full; /* Flags whether this zone is full to avoid bit slot searches */
367+
uint16_t index; /* Zone index */
368+
uint16_t next_sz_index; /* What is the index of the next zone of this size */
369+
uint32_t alloc_count; /* Total number of lifetime allocations */
370+
uint32_t af_count; /* Increment/Decrement with each alloc/free operation */
371+
uint32_t chunk_count; /* Total number of chunks in this zone */
372+
uint8_t chunk_size_pow2; /* Computed by _log2(chunk_size) at zone creation */
373373
#if MEMORY_TAGGING
374374
bool tagged; /* Zone supports memory tagging */
375375
#endif

0 commit comments

Comments
 (0)