summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2017-03-23 23:50:39 +0000
committerYann Ylavic <ylavic@apache.org>2017-03-23 23:50:39 +0000
commit84f3ecfc5ffbe4074e73cf3824fd6ba5c4986fe0 (patch)
tree2a47576ce605e1202a3f51a46fea5b831fb36672 /CHANGES
parent1936d5e2862bbb624798c1d552708d6675134f9f (diff)
downloadapr-84f3ecfc5ffbe4074e73cf3824fd6ba5c4986fe0.tar.gz
apr_allocator, apr_pools: Add apr_allocator_page_size(),
apr_allocator_min_order_set() and apr_pool_alloc_order_set() to respectively get the (system's) page size in use, set the minimum allocation size for an allocator and the pool default allocation size (expressed in 2^order pages). Also allows for order-0 allocations (and pools), hence use index MAX_INDEX (instead of index 0) to track oversized nodes. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1788346 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES6
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 680b0ee29..e44b81673 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,12 @@
-*- coding: utf-8 -*-
Changes for APR 2.0.0
+ *) apr_allocator, apr_pools: Add apr_allocator_page_size(),
+ apr_allocator_min_order_set() and apr_pool_alloc_order_set() to
+ respectively get the (system's) page size in use, set the minimum
+ allocation size for an allocator and the pool default allocation
+ size (expressed in 2^order pages). [Yann Ylavic]
+
*) apr_buckets: Add apr_bucket_file_set_buf_size() which allows to configure
the size of the buffer used to read files. [Yann Ylavic]