Age | Commit message (Expand) | Author |
2014-08-18 | a small tweak to improve malloc in multithreaded programs. we don't need | Ted Unangst |
2014-07-09 | reduce obvious dependency on global g_pool by moving to local aliases | Ted Unangst |
2014-06-27 | extra evil spaces snuck in over the last while | Theo de Raadt |
2014-06-27 | Move to a smaller rbytes buffer and skip a random part. Not to | Otto Moerbeek |
2014-06-02 | move random bytes buffer to be part of mmaped pages; ok tedu@ | Otto Moerbeek |
2014-05-26 | move all stats collecting under MALLOC_STATS; ok krw@ | Otto Moerbeek |
2014-05-21 | fix MALLOC_STATS (not compiled in by default); ok tedu@ | Otto Moerbeek |
2014-05-18 | factor out a bit of the chunk index code and use it to make sure that a | Ted Unangst |
2014-05-12 | change to having four freelists per size, to reduce another source of | Ted Unangst |
2014-05-10 | fix MALLOC_STATS code that was broken in rev 1.159, not compiled in by default | Otto Moerbeek |
2014-05-08 | move reallocarray() to a seperate file so that -portable applications | Theo de Raadt |
2014-05-07 | comment style fix | Alexander Hall |
2014-05-01 | nibbles aren't enough random, use bytes. does a better job of picking | Ted Unangst |
2014-04-23 | remove Z option and default to something halfway to J. | Ted Unangst |
2014-04-23 | explain a bit more what's going on for stupid me. | Marc Espie |
2014-04-23 | Better, cleaner hash function that computes the same on be and le archs. | Otto Moerbeek |
2014-04-22 | change mallocarray to reallocarray. useful in a few more situations. | Ted Unangst |
2014-04-21 | Introducing: void *mallocarray(size_t nmemb, size_t size); | Theo de Raadt |
2014-04-14 | print pid in error messages; ok reyk@ | Otto Moerbeek |
2014-04-03 | Update Copyright notice; ok otto@ beck@ deraadt@. | Ingo Schwarze |
2014-03-25 | Poul-Henning Kamp informed me he is allright with this licensing change. | Bob Beck |
2013-11-12 | avoid arithetic on void * | Theo de Raadt |
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 |