Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-12-27 | Fix file descriptor leak in fts_children(); okay dhill@, millert@, | Pedro Martelletto | |
tedu@, thib@. | |||
2008-12-27 | when polling aucat(1) socket, don't set the POLLIN bit if we | Alexandre Ratchov | |
don't expect messages. Avoids busy loops in programs calling poll(2) on a stopped device. | |||
2008-12-27 | when using the aucat(1) backend, don't mask the POLLHUP bit | Alexandre Ratchov | |
even if the device is not started yet. This way, if the server is killed programs can notice it. | |||
2008-12-23 | repair the ARC4 story; ok jmc djm millert | Theo de Raadt | |
2008-12-23 | ddb.console does not override machdep.kbdreset, so don't say it does; | Jason McIntyre | |
2008-12-22 | document yp_maplist(); from Ingo Schwarze | Jason McIntyre | |
ok deraadt | |||
2008-12-22 | The example for detecting malicious PTR records could be easily misinterpreted. | Jacek Masiulaniec | |
Make it less ambiguous; ok gilles@ claudio@ | |||
2008-12-22 | Let this compile with gcc 2. | Miod Vallat | |
2008-12-21 | remove mixer bits from the audio(4) backend of libsndio, it's not | Alexandre Ratchov | |
possible to get them right in the current state of the mixer. discussed with jakemsr | |||
2008-12-21 | fix more spelling errors and typos, | Alexandre Ratchov | |
from Thomas Pfaff <tpfaff(at)@tp76.info>, thanks | |||
2008-12-20 | Add man page for wcstol and friends. | Mark Kettenis | |
ok jmc@ | |||
2008-12-18 | Add pthread_attr_[sg]etguardsize() to match rthread, including manpages | Philip Guenthe | |
Bump lib minor ok otto@ kurt@ marc@; doc review by jmc@ | |||
2008-12-17 | stop using stderr in the library, wrap all diagnostic fprintfs | Alexandre Ratchov | |
so they are visible only when the DEBUG macro is #defined and SIO_DEBUG env. variable is set. requested by many, discussed with jakemsr | |||
2008-12-17 | Document ENOBUFS for writev(2). | Ray Lai | |
Okay claudio, deraadt. | |||
2008-12-17 | tweak previous; | Jason McIntyre | |
2008-12-17 | fix spell errors, from Thomas Pfaff <tpfaff(at)tp76.info>, thanks! | Alexandre Ratchov | |
2008-12-17 | add a writable ``appbufsz'' field to the sa_par structure, containing | Alexandre Ratchov | |
the program-part of the buffer size, ie the part that is subject to underruns. Useful for apps like cdio(1) that don't have their own rings, or to apps that have a minimum ring size constraint. Setting the ``bufsz'' parameter becomes deprecated. ok jakemsr | |||
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 | space | 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-12 | document and mlink long double functions. ok jmc@ | Martynas Venckus | |
2008-12-11 | remove an unneccessary addition to SEE ALSO: all the information | Jason McIntyre | |
is already there; ok martynas | |||
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; pointed out by theo | Martynas Venckus | |
2008-12-10 | use sys/cdefs.h | Theo de Raadt | |
2008-12-09 | pass CPPFLAGS+= -D__STDC__ for vax, to get the right definitions | Martynas Venckus | |
from asm.h. discussed w/ millert@ | |||
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 | - 80-bit and quad precision trigonometric and other most | Martynas Venckus | |
important functions: acosl, asinl, atanl, atan2l, cosl, sinl, tanl, exp2l, frexpl, ilogbl, ldexpl, logbl, scalbnl, fabsl, hypotl, powl, sqrtl, rintl, copysignl, nanl, fdiml, fmaxl, fminl. mostly taken from freebsd, needed alot of changes to adapt. note, these are all c versions; and are quite slow when architectures have, e.g. sqrt. assembly versions will be added afterwards - make them .weak/__weak_alias to the double precision versions on other archs - 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 - remove unused infinity.c. the c library has infinities for each supported platform - use STRICT_ASSIGN cast hack for _kernel_rem_pio2, so that the double version has a chance of working on i386 with extra precision - avoid storing multiple copies of the pi/2 array, since it won't vary - bump major due to removed finite/finitef. although they will be in libc, which anything is linked to, minor bump might be enough ok millert@. tested by sthen@, jsg@, ajacoutot@, kili@, naddy@ | |||
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-12-07 | - man page name is keybound, not keyok | Jason McIntyre | |
- returned type is char *, not int from Frederic Culot, documentation/6019 first issue sent upstream (second already fixed) | |||
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 | revert -fpie for now, it produces crashing executables | Otto Moerbeek | |
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 | float math functions: copysignf and logbf. ok millert@ | Martynas Venckus | |
2008-11-20 | make both aucat(1) and audio(4) backends use the AUDIODEVICE env | Alexandre Ratchov | |
variable to determine the socket or the device to use. Allow choosing the when aucat(1) is used too. Noticed and tested by naddy@ | |||
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@ |