summaryrefslogtreecommitdiff
path: root/src/lib/libc/stdlib (follow)
Commit message (Expand)AuthorAgeFilesLines
* Don't pull <math.h> just because it can return HUGE_VAL in themartynas2013-01-151-3/+2
* Fix bug in random offset introduced in rev 1.143; random range wasotto2012-12-221-3/+3
* Remove excessive sys/cdefs.h inclusionderaadt2012-12-051-2/+1
* no need for .Pp before lists;jmc2012-12-051-3/+2
* Rewritten posix_openpt manual that doesn't include any of the POSIXmillert2012-12-041-74/+49
* Use "path name" not "pathname".millert2012-12-041-3/+3
* Simple emulation of POSIX pty APIs posix_openpt(), ptsname(),millert2012-12-034-6/+414
* Ensure that the base provided to strtol(3) is between 2 and 36 inclusive,jsing2012-11-181-1/+12
* Per POSIX, fix raise() and abort() to send the signal to the current thread.guenther2012-11-101-3/+5
* Add a new malloc option 'U' => "Free unmap" that does the guarding/djm2012-11-022-18/+36
* Make setenv(3) consistent with unsetenv(3), giving EINVAL if passedjeremy2012-09-232-20/+10
* remove some wacky Xo/Xc;jmc2012-09-161-3/+3
* remove tahoe-specific makefile machinery, no such hardware is known to bemiod2012-09-151-5/+1
* Document that strtod functions accept INF, NAN, NAN(). From Michal Mazurek.martynas2012-09-151-3/+28
* specify the bounds of the dst to strlcat (both values were static andderaadt2012-09-131-2/+2
* Fix precedence bug (& has lower precedence than !=).pirofti2012-09-131-2/+2
* remove lint leftovers; ok guenther@okan2012-09-041-5/+1
* use PAGE_SHIFT instead of PGSHIFT, in preperation for futurederaadt2012-07-091-2/+2
* Zap extra spaces from function pointer argumentsguenther2012-07-082-8/+8
* Describe tdelete()'s return value correctly and update the related CAVEATguenther2012-07-081-12/+15
* after a talk with ariane, use MAP_FIXED for mquery to avoid the cost oftedu2012-06-261-2/+2
* two changes which should improve realloc. first, fix zapcacheregion totedu2012-06-221-10/+19
* two small fixes to free page cache. first, we need two nibbles of randomtedu2012-06-201-4/+4
* Support larger-than-page-alignment requests in posix_memalign() bymatthew2012-06-182-23/+130
* Update STANDARDS section for a few <stdlib.h> functionsguenther2012-06-023-9/+29
* Improve standards conformance: ecvt(), fcvt(), gcvt(), mktemp(), ttyslot(),guenther2012-06-013-8/+11
* alloca is NOT machine dependent; it has exactly the samederaadt2012-04-121-7/+3
* Fix a bug where random() always returns 0 when srandom() is seededmillert2012-03-211-2/+3
* - Test for the retrieved page address not being NULL. This turns free((void*)1)otto2012-02-291-2/+7
* Revert previous diff as it resulted in the wrong return code whenguenther2012-02-061-5/+3
* Complete the HISTORY of all syscalls that exist since Version 1 AT&T UNIX.schwarze2011-11-171-2/+11
* Make struct chunk_info a variable sized struct, wasting lessotto2011-10-061-28/+55
* some minor tweaks;jmc2011-09-031-2/+2
* make -column lists pretty again;jmc2011-09-031-3/+3
* in column lists, enforce the following ordering:jmc2011-08-301-3/+3
* occured -> occurred;jmc2011-07-241-2/+2
* Recent Single Unix will malloc memory if the second argument of realpath()miod2011-07-242-17/+52
* Show (in the example) that < and > can be used multiple times; ok jmc@otto2011-07-221-4/+5
* - add a MALLOC_OPTIONS section header. the content is already there, but havingjasper2011-07-211-3/+3
* on malloc flag S, set cache size to 0; will catch even moreotto2011-07-121-2/+6
* no more math(3);jmc2011-07-079-32/+23
* as man page states, lower case undoes upper case. add support for little s,tedu2011-06-201-1/+5
* save errno dance in wrterror() and malloc_dump(); prompted by and ok deraadt@otto2011-05-201-2/+6
* introduce symbolic constant for initial number of regionsotto2011-05-181-2/+3
* zap regions_bits and rework MALLOC_MAXSHIFT a bit; ok djm@otto2011-05-181-14/+8
* Avoid fp computations for stats, this make calling malloc_dump() safe in moreotto2011-05-121-10/+7
* fix comment, the bitmap is an array of u_short nowotto2011-05-121-2/+2
* Introduce leak detection code for MALLOC_STATSotto2011-05-121-25/+165
* Move MALLOC_STATS code to bottom of file, so the real stuff is more at the top.otto2011-05-081-137/+141
* Up until now, malloc scanned the bits of the chunk bitmap fromotto2011-05-051-32/+24