]> git.proxmox.com Git - ceph.git/blame - ceph/src/jaegertracing/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb/src/third_party/duktape-1.5.2/examples/alloc-hybrid/README.rst
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / jaegertracing / opentelemetry-cpp / third_party / prometheus-cpp / 3rdparty / civetweb / src / third_party / duktape-1.5.2 / examples / alloc-hybrid / README.rst
CommitLineData
1e59de90
TL
1=====================
2Hybrid pool allocator
3=====================
4
5Example allocator that tries to satisfy memory allocations for small sizes
6from a set of fixed pools, but always falls back to malloc/realloc/free if
7a larger size is requested or the pools have been exhausted.
8
9This may be useful to reduce memory churn when the platform allocator does
10not handle allocations for a lot of small memory areas efficiently.