mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-07-23 21:23:06 +00:00
Refactor !opt.munmap to opt.retain.
This commit is contained in:
@@ -93,7 +93,7 @@ large_dalloc_maybe_junk(void *ptr, size_t size) {
|
||||
* Only bother junk filling if the extent isn't about to be
|
||||
* unmapped.
|
||||
*/
|
||||
if (!opt_munmap || (have_dss && extent_in_dss(ptr))) {
|
||||
if (opt_retain || (have_dss && extent_in_dss(ptr))) {
|
||||
large_dalloc_junk(ptr, size);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user