mirror of
https://github.com/microsoft/mimalloc.git
synced 2025-05-11 17:59:31 +03:00
wip: start on purge
This commit is contained in:
commit
42af184ce9
1 changed files with 2 additions and 2 deletions
|
@ -1425,9 +1425,9 @@ static void mi_arena_purge(mi_arena_t* arena, size_t slice_index, size_t slices)
|
||||||
// Note: assumes we (still) own the area as we may purge immediately
|
// Note: assumes we (still) own the area as we may purge immediately
|
||||||
static void mi_arena_schedule_purge(mi_arena_t* arena, size_t slice_index, size_t slices) {
|
static void mi_arena_schedule_purge(mi_arena_t* arena, size_t slice_index, size_t slices) {
|
||||||
const long delay = mi_arena_purge_delay();
|
const long delay = mi_arena_purge_delay();
|
||||||
if (delay < 0) return; // is purging allowed at all?
|
if (delay < 0 || _mi_preloading()) return; // is purging allowed at all?
|
||||||
|
|
||||||
if (_mi_preloading() || delay == 0) {
|
if (delay == 0) {
|
||||||
// decommit directly
|
// decommit directly
|
||||||
mi_arena_purge(arena, slice_index, slices);
|
mi_arena_purge(arena, slice_index, slices);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue