mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-06-24 12:55:42 +03:00
Remove --with-lg-tiny-min.
This option isn't useful in practice. This partially resolves #580.
This commit is contained in:
parent
b54530020f
commit
af76f0e5d2
4 changed files with 11 additions and 41 deletions
|
|
@ -172,9 +172,6 @@
|
|||
/* Support lazy locking (avoid locking unless a second thread is launched). */
|
||||
#undef JEMALLOC_LAZY_LOCK
|
||||
|
||||
/* Minimum size class to support is 2^LG_TINY_MIN bytes. */
|
||||
#undef LG_TINY_MIN
|
||||
|
||||
/*
|
||||
* Minimum allocation alignment is 2^LG_QUANTUM bytes (ignoring tiny size
|
||||
* classes).
|
||||
|
|
|
|||
|
|
@ -285,6 +285,7 @@ cat <<EOF
|
|||
* This header file defines:
|
||||
*
|
||||
* LG_SIZE_CLASS_GROUP: Lg of size class count for each size doubling.
|
||||
* LG_TINY_MIN: Lg of minimum size class to support.
|
||||
* SIZE_CLASSES: Complete table of SC(index, lg_grp, lg_delta, ndelta, psz,
|
||||
* bin, pgs, lg_delta_lookup) tuples.
|
||||
* index: Size class index.
|
||||
|
|
@ -310,6 +311,7 @@ cat <<EOF
|
|||
*/
|
||||
|
||||
#define LG_SIZE_CLASS_GROUP ${lg_g}
|
||||
#define LG_TINY_MIN ${lg_tmin}
|
||||
|
||||
EOF
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue