Skip to content

Commit cadff59

Browse files
authored
Update types.h
1 parent 765c7c4 commit cadff59

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • Include/internal/mimalloc/mimalloc

Include/internal/mimalloc/mimalloc/types.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ typedef struct mi_segment_s {
481481
struct mi_segment_s* next; // the list of freed segments in the cache (must be first field, see `segment.c:mi_segment_init`)
482482

483483
size_t abandoned; // abandoned pages (i.e. the original owning thread stopped) (`abandoned <= used`)
484-
size_t abandoned_visits; // count how often this segment is visited in the abandoned list (to force reclaim it it is too long)
484+
size_t abandoned_visits; // count how often this segment is visited in the abandoned list (to force reclaim if it is too long)
485485
size_t used; // count of pages in use
486486
uintptr_t cookie; // verify addresses in debug mode: `mi_ptr_cookie(segment) == segment->cookie`
487487

0 commit comments

Comments
 (0)