]> git.proxmox.com Git - ceph.git/blob - 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
1 =====================
2 Hybrid pool allocator
3 =====================
4
5 Example allocator that tries to satisfy memory allocations for small sizes
6 from a set of fixed pools, but always falls back to malloc/realloc/free if
7 a larger size is requested or the pools have been exhausted.
8
9 This may be useful to reduce memory churn when the platform allocator does
10 not handle allocations for a lot of small memory areas efficiently.