| Commit message (Expand) | Author | Age | Files | Lines |
* | use PAGE_SHIFT instead of PGSHIFT, in preperation for future |  deraadt | 2012-07-09 | 1 | -2/+2 |
* | Zap extra spaces from function pointer arguments |  guenther | 2012-07-08 | 2 | -8/+8 |
* | Describe tdelete()'s return value correctly and update the related CAVEAT |  guenther | 2012-07-08 | 1 | -12/+15 |
* | after a talk with ariane, use MAP_FIXED for mquery to avoid the cost of |  tedu | 2012-06-26 | 1 | -2/+2 |
* | two changes which should improve realloc. first, fix zapcacheregion to |  tedu | 2012-06-22 | 1 | -10/+19 |
* | two small fixes to free page cache. first, we need two nibbles of random |  tedu | 2012-06-20 | 1 | -4/+4 |
* | Support larger-than-page-alignment requests in posix_memalign() by |  matthew | 2012-06-18 | 2 | -23/+130 |
* | Update STANDARDS section for a few <stdlib.h> functions |  guenther | 2012-06-02 | 3 | -9/+29 |
* | Improve standards conformance: ecvt(), fcvt(), gcvt(), mktemp(), ttyslot(), |  guenther | 2012-06-01 | 3 | -8/+11 |
* | alloca is NOT machine dependent; it has exactly the same |  deraadt | 2012-04-12 | 1 | -7/+3 |
* | Fix a bug where random() always returns 0 when srandom() is seeded |  millert | 2012-03-21 | 1 | -2/+3 |
* | - Test for the retrieved page address not being NULL. This turns free((void*)1) |  otto | 2012-02-29 | 1 | -2/+7 |
* | Revert previous diff as it resulted in the wrong return code when |  guenther | 2012-02-06 | 1 | -5/+3 |
* | Complete the HISTORY of all syscalls that exist since Version 1 AT&T UNIX. |  schwarze | 2011-11-17 | 1 | -2/+11 |
* | Make struct chunk_info a variable sized struct, wasting less |  otto | 2011-10-06 | 1 | -28/+55 |
* | some minor tweaks; |  jmc | 2011-09-03 | 1 | -2/+2 |
* | make -column lists pretty again; |  jmc | 2011-09-03 | 1 | -3/+3 |
* | in column lists, enforce the following ordering: |  jmc | 2011-08-30 | 1 | -3/+3 |
* | occured -> occurred; |  jmc | 2011-07-24 | 1 | -2/+2 |
* | Recent Single Unix will malloc memory if the second argument of realpath() |  miod | 2011-07-24 | 2 | -17/+52 |
* | Show (in the example) that < and > can be used multiple times; ok jmc@ |  otto | 2011-07-22 | 1 | -4/+5 |
* | - add a MALLOC_OPTIONS section header. the content is already there, but having |  jasper | 2011-07-21 | 1 | -3/+3 |
* | on malloc flag S, set cache size to 0; will catch even more |  otto | 2011-07-12 | 1 | -2/+6 |
* | no more math(3); |  jmc | 2011-07-07 | 9 | -32/+23 |
* | as man page states, lower case undoes upper case. add support for little s, |  tedu | 2011-06-20 | 1 | -1/+5 |
* | save errno dance in wrterror() and malloc_dump(); prompted by and ok deraadt@ |  otto | 2011-05-20 | 1 | -2/+6 |
* | introduce symbolic constant for initial number of regions |  otto | 2011-05-18 | 1 | -2/+3 |
* | zap regions_bits and rework MALLOC_MAXSHIFT a bit; ok djm@ |  otto | 2011-05-18 | 1 | -14/+8 |
* | Avoid fp computations for stats, this make calling malloc_dump() safe in more |  otto | 2011-05-12 | 1 | -10/+7 |
* | fix comment, the bitmap is an array of u_short now |  otto | 2011-05-12 | 1 | -2/+2 |
* | Introduce leak detection code for MALLOC_STATS |  otto | 2011-05-12 | 1 | -25/+165 |
* | Move MALLOC_STATS code to bottom of file, so the real stuff is more at the top. |  otto | 2011-05-08 | 1 | -137/+141 |
* | Up until now, malloc scanned the bits of the chunk bitmap from |  otto | 2011-05-05 | 1 | -32/+24 |
* | Now that we use an array of u_short for the chunk bitmap change a few |  otto | 2011-04-30 | 1 | -5/+5 |
* | More efficient scanning for free chunks while not losing any randomization; |  otto | 2011-04-30 | 1 | -21/+25 |
* | Tweak the description of the optional parts around =. Found this in my |  otto | 2011-04-27 | 1 | -5/+7 |
* | tweak for clarity, ok millert@, jmc@ |  espie | 2011-03-21 | 1 | -4/+4 |
* | wrong type for variable; spotted by christian.siebert@cs.tu-chemnitz.de |  deraadt | 2011-03-06 | 1 | -3/+3 |
* | Fix PR 6267: recheck POSIXLY_CORRECT each time getopt_long() starts a new |  guenther | 2011-03-05 | 3 | -44/+16 |
* | Fix __cxa_finalize() so that calling __cxa_finalize(NULL) properly |  matthew | 2011-03-02 | 1 | -2/+2 |
* | Correctly escape a literal colon in an enclosure; |  schwarze | 2011-01-24 | 1 | -3/+3 |
* | superceded -> superseded; |  jmc | 2011-01-14 | 1 | -3/+3 |
* | avoid pointer arithmetic on void * |  dhill | 2010-12-16 | 1 | -5/+5 |
* | involes -> involves; from Carlos Alberto Pereira Gomes |  jmc | 2010-11-30 | 1 | -1/+1 |
* | print the pointer value that caused the error (if available); ok |  otto | 2010-10-21 | 1 | -47/+54 |
* | Make gcvt() better match printf("%g") behavior, it now passes regress. |  millert | 2010-09-25 | 1 | -11/+23 |
* | more wacky macro fixing; |  jmc | 2010-09-19 | 1 | -37/+37 |
* | Check for duplicate variables in the environment when setting a value |  millert | 2010-08-23 | 2 | -11/+24 |
* | Sync hcreate(3) with NetBSD, adding some caveats. |  ray | 2010-07-28 | 1 | -12/+67 |
* | getopt_long.c replaced getopt.c 6+ years ago; we can retire |  blambert | 2010-07-22 | 1 | -7/+1 |