Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Objects/obmalloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ _PyMem_mi_page_is_safe_to_free(mi_page_t *page)
// If we are deferring collection of more than this amount of memory for
// mimalloc pages, advance the write sequence. Advancing allows these
// pages to be re-used in a different thread or for a different size class.
#define QSBR_PAGE_MEM_LIMIT 4096*20
#define QSBR_PAGE_MEM_LIMIT (4096*20)

// Return true if the global write sequence should be advanced for a mimalloc
// page that is deferred from collection.
Expand Down
Loading