Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-12-20 | Add man page for wcstol and friends. | Mark Kettenis | |
ok jmc@ | |||
2008-12-17 | Document ENOBUFS for writev(2). | Ray Lai | |
Okay claudio, deraadt. | |||
2008-12-15 | shave off more bytes than you expect by declaring a few const local arrays | Otto Moerbeek | |
as static const | |||
2008-12-12 | __isinff and __isnanf | Martynas Venckus | |
2008-12-12 | do the same as was done in mi version: do not include math.h, since isinf, | Martynas Venckus | |
and isnan would expand to macros and compatibility aliases won't work | |||
2008-12-12 | strcpy -> strlcpy; ok mbalmer@ martynas@ | Otto Moerbeek | |
2008-12-12 | - document and mlink frexpf, ldexpf, modff added 13 years ago | Martynas Venckus | |
- document frexpl, ldexpl added recently a tweak and ok jmc@ | |||
2008-12-10 | no spaces allowed in the macro arguments. completely insanity! | Theo de Raadt | |
2008-12-10 | use sys/cdefs.h; pointed out by theo | Martynas Venckus | |
2008-12-10 | use sys/cdefs.h | Theo de Raadt | |
2008-12-09 | these were not needed | Martynas Venckus | |
2008-12-09 | ditto frexpl and ldexpl | Martynas Venckus | |
2008-12-09 | alias fabsl to fabs on these archs | Martynas Venckus | |
2008-12-09 | remove unused | Martynas Venckus | |
2008-12-09 | - add long double signbit | Martynas Venckus | |
- make long double versions weak aliases to double versions, on archs where long doubles are 64 bits - no need to have two finites. finite() and finitef() are non-standard 3BSD obsolete versions of isfinite. remove from libm. make them weak_alias in libc to __isfinite and __isfinitef instead. similarly make 3BSD obsolete versions of isinf, isinff, isnan, isnanf weak_aliases to C99's __isinf, __isinff, __isnan, __isnanf - bump major ok millert@ | |||
2008-12-09 | bugfix update to gdtoa 2008-10-10. ok millert@, tested by many | Martynas Venckus | |
2008-12-09 | Commit requested by marco: | Otto Moerbeek | |
Add nonblock support for xdrrecs ok millert blambert & otto; from NetBSD. libc bump to follow soon. | |||
2008-12-09 | fix inet_ntop(3) prototype; ok millert@ libc to be bumbed very soon | Otto Moerbeek | |
2008-12-07 | Document that ethers_aton returns NULL for invalid addresses. | Paul de Weerd | |
Suggested by and ok claudio@, ok jmc@ | |||
2008-11-26 | Add unix(4) to SEE ALSO. | Michael Knudsen | |
ok deraadt | |||
2008-11-26 | Fix typo, okay jmc@. | Pedro Martelletto | |
2008-11-24 | Correctly jump over routing headers and calculate the size of the if_data | Claudio Jeker | |
struct in the if_msghdr instead of using sizeof() blindly. This allows us to grow if_data without causing issues for the getifaddrs() users. OK deraadt@ (who needs this for some cool upcomming stuff) | |||
2008-11-21 | - make the .Nd of link(2) and symlink(2) a bit more consistent | Jasper Lievisse Adriaanse | |
(train trips are soo boring...) ok jmc@ | |||
2008-11-20 | move allocations between half a page and a page as close to the end of | Otto Moerbeek | |
the page as possible (i.e. make malloc option P a default). ok art@ millert@ krw@ | |||
2008-11-20 | Reduce the leeway malloc allows when moving allocations to the end of | Otto Moerbeek | |
a page to 0. P default will be changed in a separate commit. ok millert@ art@ krw@ | |||
2008-11-13 | To allow for easier playing with more strict settings introduce | Otto Moerbeek | |
a separate symbolic constant for the leeway we allow when moving allocations towards the end of a page. No functional change. | |||
2008-11-12 | avoid a few strlen calls for constant strings; prompted by tg; ok djm@ | Otto Moerbeek | |
2008-11-09 | tweak previous; | Jason McIntyre | |
2008-11-08 | Document the ddb.trigger sysctl. | Chris Kuethe | |
feedback and ok mpf@, deraadt@ | |||
2008-11-06 | if the freeprot flag (F) is set, do not do delayed frees for chunks | Otto Moerbeek | |
(might catch errors closer to the trouble spot) and junk fill pages just before reuse instead of immediate (we can't access the page anyway) since we set PROT_NONE in the F case. ok djm@ | |||
2008-11-02 | fix markup of example line and description of G flag; partly from and | Otto Moerbeek | |
ok jmc@ | |||
2008-11-02 | remove distinction between warnings and errors, ok deraadt@ djm@ | Otto Moerbeek | |
2008-10-31 | Pass a pointer to warn2 so the warn2 == IN_ALL would not be an | Todd C. Miller | |
always-false condition. From FreeBSD (delphij). | |||
2008-10-29 | if MALLOC_STATS is defined, record how many "cheap reallocs" were | Otto Moerbeek | |
tried and how many actually succeeded. | |||
2008-10-24 | some SEE ALSO additions from Ingo Schwarze; | Jason McIntyre | |
2008-10-23 | Reword description of tm_zone and tm_gmtoff fields | Philip Guenthe | |
Prompted by millert@; ok millert@ jmc@ | |||
2008-10-22 | man page for Makefile.yp, and associated bits; from Ingo Schwarze | Jason McIntyre | |
ok deraadt | |||
2008-10-21 | build w/ USE_LOCALE. ok millert@ | Martynas Venckus | |
2008-10-21 | use decimal point from locale. ok millert@ | Martynas Venckus | |
2008-10-20 | oops, assign errno the right way. caught by david running regress tests | Otto Moerbeek | |
2008-10-19 | document fts_open error handling; from Tim van der Molen | Jason McIntyre | |
ok millert | |||
2008-10-19 | Document that strptime doesn't set the dst flag. | Todd C. Miller | |
Based on a diff from Mark Bucc. OK jmc@ | |||
2008-10-06 | update to tzcode2008g from elsie.nci.nih.gov | Todd C. Miller | |
2008-10-05 | Fix conversion of numbers without an exponent. | Mark Kettenis | |
ok martynas@ | |||
2008-10-03 | reduce rbyte cache to 512 bytes, no measurable slowdown (even in the | Otto Moerbeek | |
threaded case) but much smaller working set; prompted by and ok deraadt@ | |||
2008-10-03 | save and restore errno on success. while it is not stricly needed for | Otto Moerbeek | |
non-syscalls, there's just too much code not doing the right thing on error paths; prompted by and ok deraadt@ | |||
2008-10-03 | zap __arc4_getbyte(), it was only used by the old malloc; ok millert@ | Otto Moerbeek | |
kurt@ | |||
2008-10-03 | when increasing the size of a larger than a page allocation try | Otto Moerbeek | |
mapping the region next to the existing one first; there's a pretty high chance there's a hole there we can use; ok deraadt@ tedu@ | |||
2008-10-03 | avoid spitting up regions when purging stuff from the cache, it puts | Otto Moerbeek | |
too much pressure on the amaps. ok tedu@ deraadt@ | |||
2008-10-02 | simplify and clarify login_getstyle; ok deraadt@ | Todd C. Miller | |