aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJason Evans <je@fb.com>2016-03-31 11:19:46 -0700
committerJason Evans <je@fb.com>2016-03-31 11:19:46 -0700
commitf86bc081d6190be14c64aeaae9d02863b440bfb3 (patch)
tree935d6a08d1a28194f3f03a704ea61288e39306e3 /src
parentce7c0f999bf7634078ec759f3d13290dbb34170c (diff)
downloadjemalloc-f86bc081d6190be14c64aeaae9d02863b440bfb3.tar.gz
Update a comment.
Diffstat (limited to 'src')
-rw-r--r--src/arena.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arena.c b/src/arena.c
index 4596478..38a1ce3 100644
--- a/src/arena.c
+++ b/src/arena.c
@@ -668,8 +668,8 @@ arena_chunk_init_hard(arena_t *arena)
/*
* Initialize the map to contain one maximal free untouched run. Mark
- * the pages as zeroed if chunk_alloc() returned a zeroed or decommitted
- * chunk.
+ * the pages as zeroed if arena_chunk_alloc_internal() returned a zeroed
+ * or decommitted chunk.
*/
flag_unzeroed = (zero || !commit) ? 0 : CHUNK_MAP_UNZEROED;
flag_decommitted = commit ? 0 : CHUNK_MAP_DECOMMITTED;