aboutsummaryrefslogtreecommitdiff
path: root/include/jemalloc/internal/size_classes.sh
diff options
context:
space:
mode:
authorQinfan Wu <wqfish@fb.com>2014-08-29 13:34:40 -0700
committerJason Evans <je@fb.com>2014-09-04 22:22:52 -0700
commitff6a31d3b92b7c63446ce645341d2bbd77b67dc6 (patch)
tree93adb41dc69278a6d98a26ed953d30c479ee3ea5 /include/jemalloc/internal/size_classes.sh
parentf34f6037e8d9836f7cddc02ad349dc72964bbcc7 (diff)
downloadjemalloc-ff6a31d3b92b7c63446ce645341d2bbd77b67dc6.tar.gz
Refactor chunk map.
Break the chunk map into two separate arrays, in order to improve cache locality. This is related to issue #23.
Diffstat (limited to 'include/jemalloc/internal/size_classes.sh')
-rwxr-xr-xinclude/jemalloc/internal/size_classes.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/jemalloc/internal/size_classes.sh b/include/jemalloc/internal/size_classes.sh
index 3edebf2..379d36c 100755
--- a/include/jemalloc/internal/size_classes.sh
+++ b/include/jemalloc/internal/size_classes.sh
@@ -240,7 +240,7 @@ cat <<EOF
* The small_size2bin lookup table uses uint8_t to encode each bin index, so we
* cannot support more than 256 small size classes. Further constrain NBINS to
* 255 since all small size classes, plus a "not small" size class must be
- * stored in 8 bits of arena_chunk_map_t's bits field.
+ * stored in 8 bits of arena_chunk_map_bits_t's bits field.
*/
#if (NBINS > 255)
# error "Too many small size classes"