| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2004-01-08 | There is no sysctl(9) (yet?), comment it out; | wiz | |
| fix a typo. | |||
| 2004-01-07 | Add descriptions of flags. | atatat | |
| 2004-01-03 | Uppercase CPU; mark up NULL; remove superfluous word; simplify macro usage. | wiz | |
| 2004-01-03 | At long last, add descriptions of new "dynamic" operations. | atatat | |
| 2004-01-02 | Fix typo; from Aidan Kehoe in PR lib/23950. | jmmv | |
| 2003-12-30 | In case of underflow, return -0.0 or +0.0, depending on the sign of | martin | |
| the argument. This makes sparc64 pass regress/lib/libc/ldexp. | |||
| 2003-12-26 | Niels Provos kindly agreed to drop clauses 3 and 4 from the | wiz | |
| license -- thanks. Based on OpenBSD commit and hints by itojun. | |||
| 2003-12-26 | Don'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-10 | comment 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-09 | Bump date for previous (hi andrew!). | wiz | |
| 2003-12-09 | Update man page to correct PROC_* names (addresses PR lib/23645) and | atatat | |
| 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 English | grant | |
| language. s/int/in/ | |||
| 2003-12-04 | netbsd.org -> NetBSD.org | keihan | |
| NetBSD.ORG -> NetBSD.org Now src/lib is done. | |||
| 2003-12-04 | oops | atatat | |
| 2003-12-04 | Adapt userland sysctl goop to new world order, permitting dynamic | atatat | |
| discovery. | |||
| 2003-11-26 | Fix compile problem if -UYP -DHESIOD. | lukem | |
| Noted on current-users by Srinivasa Kanduru. | |||
| 2003-11-25 | Bump date for previous. | wiz | |
| 2003-11-25 | take "Skip a random number of ids" into consideration, correct the rotation | itojun | |
| 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-23 | New sentence, new line. Remove trailing spaces. | wiz | |
| 2003-11-23 | Bump 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-18 | s/modified/modifies/ in the description of makecontext(). | uwe | |
| 2003-11-10 | Spell address with two d's. Inspired by similar changes in OpenBSD, | wiz | |
| originating from Jonathon Gray and forwarded by jmc@openbsd. | |||
| 2003-10-29 | Add manual pages for fpclassify and isfinite. | kleink | |
| 2003-10-29 | C99 7.12.3.2: add library portions of isfinite, but don't build these just | kleink | |
| yet. | |||
| 2003-10-29 | Fix the exponent value we're comparing with. | kleink | |
| 2003-10-28 | Upon rereading the implementation suggestions in the standard, rename the | kleink | |
| double-precision version to __fpclassifyd(). No need to diverge, here. | |||
| 2003-10-28 | C99 7.12.3.1: add IEEE library portions of fpclassify. Don't build these | kleink | |
| yet as the VAX implementation is still subject to discussion. | |||
| 2003-10-27 | One ';' is enough. | skrll | |
| 2003-10-27 | fix a typo that caused the build to fail. mmm commit before compile | mrg | |
| 2003-10-27 | Overhaul 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-27 | Overhaul 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-27 | Retire local union { floating-type; struct ieee_prec; } in favor of those | kleink | |
| available from <machine/ieee.h> | |||
| 2003-10-25 | Whitespace cosmetics. | kleink | |
| 2003-10-25 | Add __infinityf and __infinityl, float respectively long double analogs | kleink | |
| of __infinity. | |||
| 2003-10-24 | Add an error check to ensure these are used on platforms without a | kleink | |
| 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-23 | Fix an RCS Id botch that occured when renaming. | kleink | |
| 2003-10-22 | G/c __nanf2, which is neither being used nor the representation of a NaN. | kleink | |
| 2003-10-22 | For a double-extended NaN, the exponent must be EXT_EXP_INFNAN, not | kleink | |
| DBL_EXP_INFNAN. | |||
| 2003-10-15 | Slight improvements. | wiz | |
| 2003-10-14 | Move 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-13 | Move Jason Downs's code from a 4-clause to a 3-clause licence by | agc | |
| 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-13 | Move Keith Muller's code from a 4-clause to a 3-clause licence by removing | agc | |
| the advertising clause. Diffs provided in PR 22397 by Joel Baker, confirmed to the board by Keith Muller. | |||
| 2003-10-05 | Remove references to University of California from my copyright notices. | bouyer | |
| 2003-09-28 | Simon has persuaded me to remove the 'sizeof (struct kinfo_drivers)' field. | dsl | |
| 2003-09-27 | Add KERN_ROOT_PARTITION and KERN_DRIVERS | dsl | |
| 2003-09-18 | remove pw_dup(3), for now at least | jdolecek | |
| follows discussion on mailing lists, discussed in private e-mail with Itojun | |||
| 2003-09-16 | Shut lint up. | simonb | |
| 2003-09-15 | avoid overflow during multiply. David Laight | itojun | |
