From 157b201004fb262062b6b37dc2d248f57252ade0 Mon Sep 17 00:00:00 2001 From: iurii zakipnyi Date: Tue, 3 Jun 2025 09:39:05 -0700 Subject: [PATCH] minor comment --- src/prim/unix/prim.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/prim/unix/prim.c b/src/prim/unix/prim.c index ff4eb610..5e265d17 100644 --- a/src/prim/unix/prim.c +++ b/src/prim/unix/prim.c @@ -433,6 +433,7 @@ int _mi_prim_commit(void* start, size_t size, bool* is_zero) { #if defined(__APPLE__) // MADV_FREE_REUSABLE is paired with MADV_FREE_REUSE for accounting + // if this memory was not marked as MADV_FREE_REUSABLE, this call is noop madvise(start, size, MADV_FREE_REUSE); #endif return err;