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