summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib
AgeCommit message (Expand)Author
2012-06-20two small fixes to free page cache. first, we need two nibbles of randomTed Unangst
2012-06-18Support larger-than-page-alignment requests in posix_memalign() byMatthew Dempsky
2012-06-02Update STANDARDS section for a few <stdlib.h> functionsPhilip Guenthe
2012-06-01Improve standards conformance: ecvt(), fcvt(), gcvt(), mktemp(), ttyslot(),Philip Guenthe
2012-04-12alloca is NOT machine dependent; it has exactly the sameTheo de Raadt
2012-03-21Fix a bug where random() always returns 0 when srandom() is seededTodd C. Miller
2012-02-29- Test for the retrieved page address not being NULL. This turns free((void*)1)Otto Moerbeek
2012-02-06Revert previous diff as it resulted in the wrong return code whenPhilip Guenthe
2011-11-17Complete the HISTORY of all syscalls that exist since Version 1 AT&T UNIX.Ingo Schwarze
2011-10-06Make struct chunk_info a variable sized struct, wasting lessOtto Moerbeek
2011-09-03some minor tweaks;Jason McIntyre
2011-09-03make -column lists pretty again;Jason McIntyre
2011-08-30in column lists, enforce the following ordering:Jason McIntyre
2011-07-24occured -> occurred;Jason McIntyre
2011-07-24Recent Single Unix will malloc memory if the second argument of realpath()Miod Vallat
2011-07-22Show (in the example) that < and > can be used multiple times; ok jmc@Otto Moerbeek
2011-07-21- add a MALLOC_OPTIONS section header. the content is already there, but havingJasper Lievisse Adriaanse
2011-07-12on malloc flag S, set cache size to 0; will catch even moreOtto Moerbeek
2011-07-07no more math(3);Jason McIntyre
2011-06-20as man page states, lower case undoes upper case. add support for little s,Ted Unangst
2011-05-20save errno dance in wrterror() and malloc_dump(); prompted by and ok deraadt@Otto Moerbeek
2011-05-18introduce symbolic constant for initial number of regionsOtto Moerbeek
2011-05-18zap regions_bits and rework MALLOC_MAXSHIFT a bit; ok djm@Otto Moerbeek
2011-05-12Avoid fp computations for stats, this make calling malloc_dump() safe in moreOtto Moerbeek
2011-05-12fix comment, the bitmap is an array of u_short nowOtto Moerbeek
2011-05-12Introduce leak detection code for MALLOC_STATSOtto Moerbeek
2011-05-08Move MALLOC_STATS code to bottom of file, so the real stuff is more at the top.Otto Moerbeek
2011-05-05Up until now, malloc scanned the bits of the chunk bitmap fromOtto Moerbeek
2011-04-30Now that we use an array of u_short for the chunk bitmap change a fewOtto Moerbeek
2011-04-30More efficient scanning for free chunks while not losing any randomization;Otto Moerbeek
2011-04-27Tweak the description of the optional parts around =. Found this in myOtto Moerbeek
2011-03-21tweak for clarity, ok millert@, jmc@Marc Espie
2011-03-06wrong type for variable; spotted by christian.siebert@cs.tu-chemnitz.deTheo de Raadt
2011-03-05Fix PR 6267: recheck POSIXLY_CORRECT each time getopt_long() starts a newPhilip Guenthe
2011-03-02Fix __cxa_finalize() so that calling __cxa_finalize(NULL) properlyMatthew Dempsky
2011-01-24Correctly escape a literal colon in an enclosure;Ingo Schwarze
2011-01-14superceded -> superseded;Jason McIntyre
2010-12-16avoid pointer arithmetic on void *David Hill
2010-11-30involes -> involves; from Carlos Alberto Pereira GomesJason McIntyre
2010-10-21print the pointer value that caused the error (if available); okOtto Moerbeek
2010-09-25Make gcvt() better match printf("%g") behavior, it now passes regress.Todd C. Miller
2010-09-19more wacky macro fixing;Jason McIntyre
2010-08-23Check for duplicate variables in the environment when setting a valueTodd C. Miller
2010-07-28Sync hcreate(3) with NetBSD, adding some caveats.Ray Lai
2010-07-22getopt_long.c replaced getopt.c 6+ years ago; we can retireBret Lambert
2010-07-06Document new unsetenv() error returns.Christian Weisgerber
2010-06-29Make unsetenv(NULL) and unsetenv("") give EINVAL, per POSIX. ok deraadt@Christian Weisgerber
2010-05-26oops - forgot to check for trailing whitespace;Jason McIntyre
2010-05-26reword the 'D' dump bit to make it clear that the malloc.out file needsThordur I. Bjornsson
2010-05-19tweak previous;Jason McIntyre