summaryrefslogtreecommitdiff
path: root/lib/libc/gen
AgeCommit message (Collapse)Author
2004-01-08There is no sysctl(9) (yet?), comment it out;wiz
fix a typo.
2004-01-07Add descriptions of flags.atatat
2004-01-03Uppercase CPU; mark up NULL; remove superfluous word; simplify macro usage.wiz
2004-01-03At long last, add descriptions of new "dynamic" operations.atatat
2004-01-02Fix typo; from Aidan Kehoe in PR lib/23950.jmmv
2003-12-30In case of underflow, return -0.0 or +0.0, depending on the sign ofmartin
the argument. This makes sparc64 pass regress/lib/libc/ldexp.
2003-12-26Niels Provos kindly agreed to drop clauses 3 and 4 from thewiz
license -- thanks. Based on OpenBSD commit and hints by itojun.
2003-12-26Don't ever add a ".0" to a single digit number.simonb
XXX: Should (for example) 1024 be 1.0K or 1K when the HN_DECIMAL flag is passed? Should there be a separate option that says "use the HN_DECIMAL behaviour unless we are exactly equal to the suffix"?
2003-12-10comment from niels provos;itojun
- seed2 is necessary, but use it as "seed2 + x" not "seed2 ^ x". - skipping number is not needed, so disable it for 16bit generator (makes the repetition period to 30000)
2003-12-09Bump date for previous (hi andrew!).wiz
2003-12-09Update man page to correct PROC_* names (addresses PR lib/23645) andatatat
also describe the new PROC_PID_STOPEXIT variable. Man page still not updated to include new features. I'm still working on that.
2003-12-08"int flags" is correct in the prototype, but not in the Englishgrant
language. s/int/in/
2003-12-04netbsd.org -> NetBSD.orgkeihan
NetBSD.ORG -> NetBSD.org Now src/lib is done.
2003-12-04oopsatatat
2003-12-04Adapt userland sysctl goop to new world order, permitting dynamicatatat
discovery.
2003-11-26Fix compile problem if -UYP -DHESIOD.lukem
Noted on current-users by Srinivasa Kanduru.
2003-11-25Bump date for previous.wiz
2003-11-25take "Skip a random number of ids" into consideration, correct the rotationitojun
period number. simonb
2003-11-25"seed2" was ruining the non-repeating property of this function; remove it.itojun
discussed on tech-net for ip_id.c (thanks for all the analysis).
2003-11-23New sentence, new line. Remove trailing spaces.wiz
2003-11-23Bump Dd.jhawk
better explain the interactions between ip.mtudisc and tcp.mssdflt, with regards to the TCP segment size. ip.mtudisc is not read-only, as was implied by "returns" XXX: this ("returns") should be corrected for other parameters, too. Xr tcp(4)
2003-11-18s/modified/modifies/ in the description of makecontext().uwe
2003-11-10Spell address with two d's. Inspired by similar changes in OpenBSD,wiz
originating from Jonathon Gray and forwarded by jmc@openbsd.
2003-10-29Add manual pages for fpclassify and isfinite.kleink
2003-10-29C99 7.12.3.2: add library portions of isfinite, but don't build these justkleink
yet.
2003-10-29Fix the exponent value we're comparing with.kleink
2003-10-28Upon rereading the implementation suggestions in the standard, rename thekleink
double-precision version to __fpclassifyd(). No need to diverge, here.
2003-10-28C99 7.12.3.1: add IEEE library portions of fpclassify. Don't build thesekleink
yet as the VAX implementation is still subject to discussion.
2003-10-27One ';' is enough.skrll
2003-10-27fix a typo that caused the build to fail. mmm commit before compilemrg
2003-10-27Overhaul how `build.sh tools' are used:lukem
* Rename "config.h" to "nbtool_config.h" and HAVE_CONFIG_H to HAVE_NBTOOL_CONFIG_H. This makes in more obvious in the source when we're using tools/compat/config.h versus "standard autoconf" config.h * Consistently move the inclusion of nbtool_config.h to before <sys/cdefs.h> so that the former can provide __RCSID() (et al), and there's no need to protect those macros any more. These changes should make it easier to "tool-ify" a program by adding: #if HAVE_NBTOOL_CONFIG_H #include "nbtool_config.h" #endif to the top of the source files (for the general case).
2003-10-27Overhaul how `build.sh tools' are used:lukem
* Rename "config.h" to "nbtool_config.h" and HAVE_CONFIG_H to HAVE_NBTOOL_CONFIG_H. This makes in more obvious in the source when we're using tools/compat/config.h versus "standard autoconf" config.h * Consistently move the inclusion of nbtool_config.h to before <sys/cdefs.h> so that the former can provide __RCSID() (et al), and there's no need to protect those macros any more. These changes should make it easier to "tool-ify" a program by adding: #if HAVE_NBTOOL_CONFIG_H #include "nbtool_config.h" #endif to the top of the source files (for the general case).
2003-10-27Retire local union { floating-type; struct ieee_prec; } in favor of thosekleink
available from <machine/ieee.h>
2003-10-25Whitespace cosmetics.kleink
2003-10-25Add __infinityf and __infinityl, float respectively long double analogskleink
of __infinity.
2003-10-24Add an error check to ensure these are used on platforms without akleink
distinct long doble type only.
2003-10-24* Since there is no single portable IEEE 754 format for a long double,kleink
keep a common implementation of isinfl() and isnanl() to be used by platforms where `long double' == `double'; move others into machine-dependent code. * In due course, consider __VFP_FP__ on arm.
2003-10-23Fix an RCS Id botch that occured when renaming.kleink
2003-10-22G/c __nanf2, which is neither being used nor the representation of a NaN.kleink
2003-10-22For a double-extended NaN, the exponent must be EXT_EXP_INFNAN, notkleink
DBL_EXP_INFNAN.
2003-10-15Slight improvements.wiz
2003-10-14Move siginfo(5) and ucontext(5) to siginfo(2) and ucontext(2) resp.,wiz
and fix references. Per a discussion on source-changes around Sep 14 2003.
2003-10-13Move Jason Downs's code from a 4-clause to a 3-clause licence byagc
removing the advertising clause. Diffs provided in PR 22410 by Joel Baker, confirmed to the board by Jason Downs. With additional thanks to Jason Thorpe.
2003-10-13Move Keith Muller's code from a 4-clause to a 3-clause licence by removingagc
the advertising clause. Diffs provided in PR 22397 by Joel Baker, confirmed to the board by Keith Muller.
2003-10-05Remove references to University of California from my copyright notices.bouyer
2003-09-28Simon has persuaded me to remove the 'sizeof (struct kinfo_drivers)' field.dsl
2003-09-27Add KERN_ROOT_PARTITION and KERN_DRIVERSdsl
2003-09-18remove pw_dup(3), for now at leastjdolecek
follows discussion on mailing lists, discussed in private e-mail with Itojun
2003-09-16Shut lint up.simonb
2003-09-15avoid overflow during multiply. David Laightitojun