summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorDavid Kalnischkies <kalnischkies@gmail.com>2009-07-08 01:03:15 +0200
committerDavid Kalnischkies <kalnischkies@gmail.com>2009-07-08 01:03:15 +0200
commitf1c6a8ca0511c623a16bb804ed2c5b6c26c83d78 (patch)
tree92ba34080e48a63c143fffba58da3b79698025f6 /debian
parentc3a85f49fd8c82326707ce870c2b11b587fd0bd1 (diff)
[contrib/mmap] implements a theoretical dynamic growing mmap
based on Michael Vogts patch in #195018 this commit implements the use of mmap (as preferred) instead of a static char array. In theory this made it possible to grow the mmap as needed, but as it is currently impossible to move the mmap around in the memory the grow is likely to fail but it improve the memory usage a bit, so it is not totally useless for now - and maybe we can adjust the pointers in the future...
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog2
1 files changed, 2 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
index 412435fad..27b798fe5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -34,6 +34,8 @@ apt (0.7.22) UNRELEASED; urgency=low
correctly when downloading from multiple sites (Closes: #534752)
* add the various foldmarkers in apt-pkg & cmdline (no code change)
* versions with a pin of -1 shouldn't be a candidate (Closes: #355237)
+ * prefer mmap as memory allocator in MMap instead of a static char
+ array which can (at least in theory) grow dynamic
[ Michael Vogt ]
* honor the dpkg hold state in new Marker hooks (closes: #64141)