| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | use .Va for global variables, and .Vt where the type is included | schwarze | 2015-09-14 | 1 | -4/+3 |
* | remove incorrect statement. the standard *does* require calloc to check | tedu | 2015-03-14 | 1 | -7/+2 |
* | missing , found by Dongsheng Song | deraadt | 2015-01-08 | 1 | -3/+3 |
* | fix NAME; | jmc | 2014-12-09 | 1 | -3/+3 |
* | remove cfree from documentation | tedu | 2014-12-08 | 1 | -19/+3 |
* | malloc(3) is in the "comp" install set, malloc.conf(5) in "man", | schwarze | 2014-12-06 | 1 | -126/+8 |
* | clean up verbiage around the calculations; ok ingo jmc otto | deraadt | 2014-10-30 | 1 | -5/+5 |
* | Don't mention old systems where realloc(NULL, n) didn't work as we | millert | 2014-10-30 | 1 | -11/+7 |
* | Save space in man page: err() -> errc() and combine vars. | doug | 2014-10-23 | 1 | -18/+11 |
* | Avoid writing in second person in malloc.3 | doug | 2014-10-22 | 1 | -13/+12 |
* | List extensions in the STANDARDS section, replacing some text below CAVEATS. | schwarze | 2014-10-20 | 1 | -33/+30 |
* | make RETURN VALUES more concise | schwarze | 2014-10-19 | 1 | -77/+28 |
* | Revamp malloc.3 by reordering the sections and rewriting parts. | doug | 2014-10-19 | 1 | -185/+417 |
* | tweak previous; ok sthen | jmc | 2014-05-01 | 1 | -3/+3 |
* | first cut at documenting the change to malloc doing a partial 'junk' by | sthen | 2014-04-30 | 1 | -2/+7 |
* | - one more mallocarray -> reallocarray | jmc | 2014-04-22 | 1 | -3/+3 |
* | change mallocarray to reallocarray. useful in a few more situations. | tedu | 2014-04-22 | 1 | -12/+9 |
* | Introducing: void *mallocarray(size_t nmemb, size_t size); | deraadt | 2014-04-21 | 1 | -7/+22 |
* | HISTORY; tweaks and ok sobrado@ jmc@ | schwarze | 2013-07-18 | 1 | -5/+22 |
* | Use the fancy .In macro for includes. From Jan Klemkow. ok jmc schwarze | tedu | 2013-06-05 | 1 | -3/+3 |
* | Add a new malloc option 'U' => "Free unmap" that does the guarding/ | djm | 2012-11-02 | 1 | -3/+12 |
* | 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 |
* | oops - forgot to check for trailing whitespace; | jmc | 2010-05-26 | 1 | -2/+2 |
* | reword the 'D' dump bit to make it clear that the malloc.out file needs | thib | 2010-05-26 | 1 | -4/+5 |
* | add posix_madvise, posix_memalign, strndup, and strnlen. mostly from | tedu | 2010-05-18 | 1 | -3/+4 |
* | stucture -> structure; | jmc | 2010-01-25 | 1 | -3/+3 |
* | New options 'S', as a shorthand for the options most suitable as an | otto | 2010-01-13 | 1 | -2/+4 |
* | rewrite the history section, prompted by Paul Stoeber; ok deraadt@ jmc@ | otto | 2009-10-10 | 1 | -25/+28 |
* | kill whitespace at eol; | jmc | 2009-02-13 | 1 | -2/+2 |
* | decribe 'F' better and mention flags are debugging aids; ok tedu@ jmc@ | otto | 2009-02-13 | 1 | -8/+10 |
* | Remove mprotecting of struct dir_info introduced in previous commit | djm | 2008-12-30 | 1 | -9/+2 |
* | extra paranoia for malloc(3): | djm | 2008-12-29 | 1 | -2/+9 |
* | Fix typo, okay jmc@. | pedro | 2008-11-26 | 1 | -3/+3 |
* | move allocations between half a page and a page as close to the end of | otto | 2008-11-20 | 1 | -2/+3 |
* | fix markup of example line and description of G flag; partly from and | otto | 2008-11-02 | 1 | -5/+4 |
* | remove distinction between warnings and errors, ok deraadt@ djm@ | otto | 2008-11-02 | 1 | -26/+18 |
* | small cleanup of error/warning strings | otto | 2008-08-07 | 1 | -3/+3 |
* | man page bits for new malloc; ok jmc@ | otto | 2008-07-28 | 1 | -43/+33 |
* | kill an Xr to a non-existent man page, ulimit(1); | jmc | 2008-05-20 | 1 | -5/+3 |
* | remove recalloc(3); it is buggy and impossible to repair without big | otto | 2008-05-19 | 1 | -25/+3 |
* | no need to talk about bits; ok millert jmc | deraadt | 2007-09-05 | 1 | -3/+3 |
* | Update free(3) section--we use mmap()/munmap(), not brk(). | millert | 2007-09-03 | 1 | -4/+6 |
* | add recaloc(3) | millert | 2007-09-03 | 1 | -3/+25 |
* | Clarify the example about avoiding overflow. OK ray@ deraadt@ | millert | 2007-08-08 | 1 | -3/+3 |
* | convert to new .Dd format; | jmc | 2007-05-31 | 1 | -2/+2 |
* | Fix 'double by a factor of two' and make cache options a bit more | pedro | 2006-06-06 | 1 | -4/+4 |
* | Use SIZE_MAX instead of SIZE_T_MAX, the latter is not POSIX and | otto | 2006-04-02 | 1 | -2/+2 |
* | Add warning about malloc(num * size) and recommend calloc() instead, | ray | 2006-03-26 | 1 | -5/+40 |
* | missing auxillary verb | jakemsr | 2006-01-18 | 1 | -2/+2 |