We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 765c7c4 commit cadff59Copy full SHA for cadff59
1 file changed
Include/internal/mimalloc/mimalloc/types.h
@@ -481,7 +481,7 @@ typedef struct mi_segment_s {
481
struct mi_segment_s* next; // the list of freed segments in the cache (must be first field, see `segment.c:mi_segment_init`)
482
483
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)
+ size_t abandoned_visits; // count how often this segment is visited in the abandoned list (to force reclaim if it is too long)
485
size_t used; // count of pages in use
486
uintptr_t cookie; // verify addresses in debug mode: `mi_ptr_cookie(segment) == segment->cookie`
487
0 commit comments