Age | Commit message (Expand) | Author |
2012-12-22 | Fix bug in random offset introduced in rev 1.143; random range was | Otto Moerbeek |
2012-11-02 | Add a new malloc option 'U' => "Free unmap" that does the guarding/ | Damien Miller |
2012-09-13 | Fix precedence bug (& has lower precedence than !=). | Paul Irofti |
2012-07-09 | use PAGE_SHIFT instead of PGSHIFT, in preperation for future | Theo de Raadt |
2012-06-26 | after a talk with ariane, use MAP_FIXED for mquery to avoid the cost of | Ted Unangst |
2012-06-22 | two changes which should improve realloc. first, fix zapcacheregion to | Ted Unangst |
2012-06-20 | two small fixes to free page cache. first, we need two nibbles of random | Ted Unangst |
2012-06-18 | Support larger-than-page-alignment requests in posix_memalign() by | Matthew Dempsky |
2012-02-29 | - Test for the retrieved page address not being NULL. This turns free((void*)1) | Otto Moerbeek |
2011-10-06 | Make struct chunk_info a variable sized struct, wasting less | Otto Moerbeek |
2011-07-12 | on malloc flag S, set cache size to 0; will catch even more | Otto Moerbeek |
2011-06-20 | as man page states, lower case undoes upper case. add support for little s, | Ted Unangst |
2011-05-20 | save errno dance in wrterror() and malloc_dump(); prompted by and ok deraadt@ | Otto Moerbeek |
2011-05-18 | introduce symbolic constant for initial number of regions | Otto Moerbeek |
2011-05-18 | zap regions_bits and rework MALLOC_MAXSHIFT a bit; ok djm@ | Otto Moerbeek |
2011-05-12 | Avoid fp computations for stats, this make calling malloc_dump() safe in more | Otto Moerbeek |
2011-05-12 | fix comment, the bitmap is an array of u_short now | Otto Moerbeek |
2011-05-12 | Introduce leak detection code for MALLOC_STATS | Otto Moerbeek |
2011-05-08 | Move MALLOC_STATS code to bottom of file, so the real stuff is more at the top. | Otto Moerbeek |
2011-05-05 | Up until now, malloc scanned the bits of the chunk bitmap from | Otto Moerbeek |
2011-04-30 | Now that we use an array of u_short for the chunk bitmap change a few | Otto Moerbeek |
2011-04-30 | More efficient scanning for free chunks while not losing any randomization; | Otto Moerbeek |
2010-12-16 | avoid pointer arithmetic on void * | David Hill |
2010-10-21 | print the pointer value that caused the error (if available); ok | Otto Moerbeek |
2010-05-18 | add posix_madvise, posix_memalign, strndup, and strnlen. mostly from | Ted Unangst |
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 |