History log of /freebsd-9.3-release/lib/libc/stdlib/ql.h
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 267654 19-Jun-2014 gjb

Copy stable/9 to releng/9.3 as part of the 9.3-RELEASE cycle.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation

# 225736 22-Sep-2011 kensmith

Copy head to stable/9 as part of 9.0-RELEASE release cycle.

Approved by: re (implicit)


# 203329 31-Jan-2010 jasone

Fix bugs:

* Fix a race in chunk_dealloc_dss().

* Check for allocation failure before zeroing memory in base_calloc().

Merge enhancements from a divergent version of jemalloc:

* Convert thread-specific caching from magazines to an algorithm that is
more tunable, and implement incremental GC.

* Add support for medium size classes, [4KiB..32KiB], 2KiB apart by
default.

* Add dirty page tracking for pages within active small/medium object
runs. This allows malloc to track precisely which pages are in active
use, which makes dirty page purging more effective.

* Base maximum dirty page count on proportion of active memory.

* Use optional zeroing in arena_chunk_alloc() to avoid needless zeroing
of chunks. This is useful in the context of DSS allocation, since a
long-lived application may commonly recycle chunks.

* Increase the default chunk size from 1MiB to 4MiB.

Remove feature:

* Remove the dynamic rebalancing code, since thread caching reduces its
utility.