Age | Commit message (Expand) | Author |
2009-06-21 | abs conforms c99 -> imaxabs conforms c99. ok millert@ | Martynas Venckus |
2009-06-08 | quieten compiler by converting pointers to uintptr_t before truncating them | Theo de Raadt |
2009-06-04 | Don't assume that we can overwrite strings in the environment. | Todd C. Miller |
2009-06-03 | Make putenv(), setenv() and unsetenv() standards compliant. The | Todd C. Miller |
2009-04-12 | document that no leading whitespace is permitted between the option and | Okan Demirmen |
2009-02-13 | kill whitespace at eol; | Jason McIntyre |
2009-02-13 | decribe 'F' better and mention flags are debugging aids; ok tedu@ jmc@ | Otto Moerbeek |
2009-02-10 | correct function definitions; from Markus Bergkvist | Jason McIntyre |
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-26 | Fix typo, okay jmc@. | Pedro Martelletto |
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 | fix markup of example line and description of G flag; partly from and | 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 |
2008-10-03 | avoid spitting up regions when purging stuff from the cache, it puts | Otto Moerbeek |
2008-09-13 | document strtold. ok millert@ | Martynas Venckus |
2008-09-13 | strtof has been introduced in c99 | Martynas Venckus |
2008-09-07 | - replace dtoa w/ David's gdtoa, version 2008-03-15 | Martynas Venckus |
2008-09-03 | remove now obsolete calloc implementation; prompted by miod | Otto Moerbeek |
2008-08-25 | Make all combinations of G, P, J and zero-fill work with as little | Otto Moerbeek |
2008-08-23 | unbreak MALLOC_OPTIONS=G that I broke in my last commit; | Damien Miller |
2008-08-23 | fix calloc() for MALLOC_OPTIONS=J case: SOME_JUNK was being filled into | Damien Miller |
2008-08-22 | make sure we always map and unmap multiples of MALLOC_PAGESIZE; | Otto Moerbeek |
2008-08-22 | Smarter implementation of calloc(3), which uses the fact that mmap(2) | Otto Moerbeek |
2008-08-07 | small cleanup of error/warning strings | Otto Moerbeek |
2008-07-28 | man page bits for new malloc; ok jmc@ | Otto Moerbeek |
2008-07-28 | Almost complete rewrite of malloc, to have a more efficient data | Otto Moerbeek |
2008-06-26 | First pass at removing clauses 3 and 4 from NetBSD licenses. | Ray Lai |
2008-06-13 | grammar fixes; | Jason McIntyre |
2008-06-13 | remove _MALLOC_LOCK_INIT; major bump; ok deraadt@ | Otto Moerbeek |
2008-06-13 | Add strtof() to libc, some ports seem to like it. Currently it's a simple | Landry Breuil |
2008-05-20 | kill an Xr to a non-existent man page, ulimit(1); | Jason McIntyre |
2008-05-19 | remove recalloc(3); it is buggy and impossible to repair without big | Otto Moerbeek |
2008-04-13 | Use arc4random_buf() when requesting more than a single word of output | Damien Miller |
2008-04-04 | - do not call pthread_atfork(3) handlers when a multithreaded program | Kurt Miller |
2008-02-20 | use pgfree pool like other code does to reserve free list slots. | Otto Moerbeek |
2007-11-13 | Put limits.h in front of stdlib.h as style(9) recommends. | Tobias Stoeckmann |
2007-11-11 | strtod may return HUGE_VAL on overflow, which is defined in math.h. | Tobias Stoeckmann |