From 060f74b9932149cb648a4d8fa507145596646943 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Fri, 5 Jul 2019 17:55:25 -0400 Subject: [PATCH] extended size classes now go up to 128k not 64k --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4a94c26..ea20228 100644 --- a/README.md +++ b/README.md @@ -169,9 +169,9 @@ for the chosen values are not written yet, so use them at your own peril: deallocation count and active allocations are tracked. This is currently only exposed via the mallinfo APIs on Android. * `CONFIG_EXTENDED_SIZE_CLASSES`: `true` (default) to control whether small - size class go up to 64k instead of the minimum requirement for avoiding - memory waste of 16k. The option to extend it even further will be offered in - the future when better support for larger slab allocations is added. + size class go up to 128kiB instead of the minimum requirement for avoiding + memory waste of 16kiB. The option to extend it even further will be offered + in the future when better support for larger slab allocations is added. * `CONFIG_LARGE_SIZE_CLASSES`: `true` (default) to control whether large allocations use the slab allocation size class scheme instead of page size granularity (see the section on size classes below)