Update a comment.

This commit is contained in:
Jason Evans 2016-03-31 11:19:46 -07:00
parent ce7c0f999b
commit f86bc081d6

View File

@ -668,8 +668,8 @@ arena_chunk_init_hard(arena_t *arena)
/* /*
* Initialize the map to contain one maximal free untouched run. Mark * Initialize the map to contain one maximal free untouched run. Mark
* the pages as zeroed if chunk_alloc() returned a zeroed or decommitted * the pages as zeroed if arena_chunk_alloc_internal() returned a zeroed
* chunk. * or decommitted chunk.
*/ */
flag_unzeroed = (zero || !commit) ? 0 : CHUNK_MAP_UNZEROED; flag_unzeroed = (zero || !commit) ? 0 : CHUNK_MAP_UNZEROED;
flag_decommitted = commit ? 0 : CHUNK_MAP_DECOMMITTED; flag_decommitted = commit ? 0 : CHUNK_MAP_DECOMMITTED;