diff options
author | daan <daanl@outlook.com> | 2020-09-08 16:46:03 -0700 |
---|---|---|
committer | daan <daanl@outlook.com> | 2020-09-08 16:46:03 -0700 |
commit | 14b8d27386d904b6ea3016f253c2dbb676510805 (patch) | |
tree | 7963c4d553b457e718d58ac083187d37c729aea3 /include/mimalloc-types.h | |
parent | c86459afef12f7830f3c5eda5d803a74fcf3134e (diff) |
track pinned memory separately from large os pages
Diffstat (limited to 'include/mimalloc-types.h')
-rw-r--r-- | include/mimalloc-types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mimalloc-types.h b/include/mimalloc-types.h index d9bd14e..8ffcd2f 100644 --- a/include/mimalloc-types.h +++ b/include/mimalloc-types.h @@ -261,7 +261,7 @@ typedef enum mi_page_kind_e { typedef struct mi_segment_s { // memory fields size_t memid; // id for the os-level memory manager - bool mem_is_fixed; // `true` if we cannot decommit/reset/protect in this memory (i.e. when allocated using large OS pages) + bool mem_is_pinned; // `true` if we cannot decommit/reset/protect in this memory (i.e. when allocated using large OS pages) bool mem_is_committed; // `true` if the whole segment is eagerly committed // segment fields |