Age | Commit message (Expand) | Author |
2010-01-13 | New options 'S', as a shorthand for the options most suitable as an | Otto Moerbeek |
2009-12-16 | save calls to arc4random() by using a nibble at a time; not because | Otto Moerbeek |
2009-12-07 | Make userland malloc use __LDPGSZ granularity on mips, regardless of the | Miod Vallat |
2009-11-27 | Switch the chunk_info lists to doubly-linked lists and use the queue | Otto Moerbeek |
2009-11-27 | Don't forget to fill region from the cache with junk if needed in one case; | Otto Moerbeek |
2009-11-27 | No need to clear a mmapped region; from Fabien Romano and Jonathan | Otto Moerbeek |
2009-11-02 | permit -DMALLOC_STATS to compile again | Todd T. Fries |
2009-10-20 | Check mmap return value against MAP_FAILED not NULL. | Paul Irofti |
2009-06-08 | quieten compiler by converting pointers to uintptr_t before truncating them | Theo de Raadt |
2009-01-03 | reintroduce extra malloc protections, but avoiding the use of | Damien Miller |
2008-12-31 | PAGE_SIZE is not a valid symbol to use in that way. In particular, | Theo de Raadt |
2008-12-30 | Remove mprotecting of struct dir_info introduced in previous commit | Damien Miller |
2008-12-29 | extra paranoia for malloc(3): | Damien Miller |
2008-12-15 | shave off more bytes than you expect by declaring a few const local arrays | Otto Moerbeek |
2008-11-20 | move allocations between half a page and a page as close to the end of | Otto Moerbeek |
2008-11-20 | Reduce the leeway malloc allows when moving allocations to the end of | Otto Moerbeek |
2008-11-13 | To allow for easier playing with more strict settings introduce | Otto Moerbeek |
2008-11-12 | avoid a few strlen calls for constant strings; prompted by tg; ok djm@ | Otto Moerbeek |
2008-11-06 | if the freeprot flag (F) is set, do not do delayed frees for chunks | Otto Moerbeek |
2008-11-02 | remove distinction between warnings and errors, ok deraadt@ djm@ | Otto Moerbeek |
2008-10-29 | if MALLOC_STATS is defined, record how many "cheap reallocs" were | Otto Moerbeek |
2008-10-20 | oops, assign errno the right way. caught by david running regress tests | Otto Moerbeek |
2008-10-03 | reduce rbyte cache to 512 bytes, no measurable slowdown (even in the | Otto Moerbeek |
2008-10-03 | save and restore errno on success. while it is not stricly needed for | Otto Moerbeek |
2008-10-03 | when increasing the size of a larger than a page allocation try | Otto Moerbeek |
2008-10-03 | avoid spitting up regions when purging stuff from the cache, it puts | Otto Moerbeek |
2008-08-25 | Make all combinations of G, P, J and zero-fill work with as little | Otto Moerbeek |
2008-08-23 | unbreak MALLOC_OPTIONS=G that I broke in my last commit; | Damien Miller |
2008-08-23 | fix calloc() for MALLOC_OPTIONS=J case: SOME_JUNK was being filled into | Damien Miller |
2008-08-22 | make sure we always map and unmap multiples of MALLOC_PAGESIZE; | Otto Moerbeek |
2008-08-22 | Smarter implementation of calloc(3), which uses the fact that mmap(2) | Otto Moerbeek |
2008-08-07 | small cleanup of error/warning strings | Otto Moerbeek |
2008-07-28 | Almost complete rewrite of malloc, to have a more efficient data | Otto Moerbeek |
2008-06-13 | remove _MALLOC_LOCK_INIT; major bump; ok deraadt@ | Otto Moerbeek |
2008-05-19 | remove recalloc(3); it is buggy and impossible to repair without big | Otto Moerbeek |
2008-04-13 | Use arc4random_buf() when requesting more than a single word of output | Damien Miller |
2008-02-20 | use pgfree pool like other code does to reserve free list slots. | Otto Moerbeek |
2007-09-03 | add recaloc(3) | Todd C. Miller |
2007-02-12 | get cheaper random bytes, less waste and no getpid() calls, which are | Otto Moerbeek |
2006-12-19 | a failed mmap returns MAP_FAILED, not NULL. found while exercising pax | Otto Moerbeek |
2006-10-24 | respond to ben hawkes's ruxcon presentation. | Ted Unangst |
2006-05-14 | Fix the second malloc_ulimit regression: maintaining the free list | Otto Moerbeek |
2006-04-24 | Do not leave an hole in the directory list if allocation of the | Otto Moerbeek |
2006-04-18 | delint; original from deraadt@ with fixes from tdeval@ and me; | Otto Moerbeek |
2006-02-14 | quick path for free(0) | Marc Espie |
2005-10-10 | Remove a few warnings. Those were not apparent thanks to a bug in gcc 2.95. | Marc Espie |
2005-10-05 | further knf and cleaning; ok tdeval | Theo de Raadt |
2005-10-05 | first KNF (no binary diffs) | Theo de Raadt |
2005-08-08 | zap remaining rcsid. | Marc Espie |
2005-07-07 | Fix the unmapping of freed pages, leaving just 64k worth of cache pages. | Thierry Deval |