| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
time yet. Revert to rev 1.2.
|
| |
|
|
|
|
| |
of .Xr for the xrefs.
|
|
|
|
| |
One manifestation of this bug: all networking users have coredumpsize=0
|
|
|
|
|
|
|
| |
when called from lpd.
Reviewed by: jkh, pst
Submitted by: Oliver Friedrichs <oliver@secnet.com>
|
|
|
|
|
|
|
| |
log10(x) = log10e * log(x). This fixes some small (one or two ULP)
inaccuracies.
Found by: ucbtest
|
|
|
|
|
|
|
|
|
| |
previous revision. Use log10f() instead of log10(). log10f() is
currently slightly slower than log10() on P5's, but it is potentially
significantly faster.
Fixed declaration of the C function used in the (unused?) KR_headers
case.
|
| |
|
| |
|
| |
|
|
|
|
| |
are in their own file.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
avoid easily avoidable loss of precision when |x| is nearly 1.
Extended (64-bit) precision only moves the meaning of "nearly" here.
This probably could be done better by splitting up the range into
|x| <= 0.5 and |x| > 0.5 like the C version. However, ucbtest
does't report any errors in this version. Perhaps the C version
should be used anyway. It's only 25% slower now on a P5, provided
the C version of sqrt() isn't used, and the C version could be
optimized better.
Errors checked by: ucbtest
|
|
|
|
| |
This could be put into 2.2.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
at runtime.
etc/make.conf:
Nuked HAVE_FPU option.
lib/msun/Makefile:
Always build the i387 objects. Copy the i387 source files at build
time so that the i387 objects have different names. This is simpler
than renaming the files in the cvs repository or repeating half of
bsd.lib.mk to add explicit rules.
lib/msun/src/*.c:
Renamed all functions that have an i387-specific version by adding
`__generic_' to their names.
lib/msun/src/get_hw_float.c:
New file for getting machdep.hw_float from the kernel.
sys/i386/include/asmacros.h:
Abuse the ENTRY() macro to generate jump vectors and associated code.
This works much like PIC PLT dynamic initialization. The PIC case is
messy. The old i387 entry points are renamed. Renaming is easier
here because the names are given by macro expansions.
|
|
|
|
|
|
|
|
|
| |
log10(x) = log10e * log(x). The formula would work if the RHS were
evaluated in extended precision with an extended precision log().
This actually happened with the i387 log() because it returns excess
precision.
Found by: ucbtest
|
|
|
|
|
|
| |
some small (one or two ULP) inaccuracies.
Found by: ucbtest
|
|
|
|
| |
build.
|
|
|
|
|
| |
Guard against possible buffer overrun in filename passed.
Another candidate for 2.2.
|
|
|
|
|
| |
This prevents keywords after "insecure" occurs being errnoeously
parsed as comments.
|
|
|
|
|
|
|
|
|
| |
This defeats the point of log1p(). ucbtest reports errors of +-5e+15
ULPs. A correct version would use the i387 fyl2xp1 instruction for
small x and maybe scale to small x. The C version does the scaling
reasonably efficiently, and fyl2px1 is slow (at least on P5s), so not
much is lost by always using the C version (only 25% for small x even
with the broken i387 version; 50% for large x).
|
|
|
|
|
|
|
|
| |
doesn't need to be included in files that have nothing to do with
syscalls.
Added missing `.text' to START_ENTRY so that ENTRY() works when
invoked in the data section.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
whole setlocale.c module now.
Should go into 2.2
|
|
|
|
| |
Submitted by: Julian Assange
|
|
|
|
|
| |
. add idempotency #ifdef
. avoid sloppy common-style external declaration.
|
|
|
|
| |
Should go in 2.2
|
| |
|
|\
| |
| |
| | |
which included commits to RCS files with non-trunk default branches.
|
| |
|
| |
|
|
|
|
| |
Should go into 2.2
|
|
|
|
|
|
|
|
| |
Add range check for setrunelocale since it can be called
directly.
Remove _startup_setlocale compatibility function
Should go into 2.2
|
|
|
|
| |
Submitted by: Wojtek Pilorz <wpilorz@celebris.bdk.lublin.pl>
|
|
|
|
| |
uthreads update from the author.
|
|
|
|
| |
Nitpicked-by: joerg
|
|
|
|
| |
Should go in 2.2
|
|
|
|
|
|
|
| |
Fix setrunelocale fail if called directly without prior setlocale
call
Should go in 2.2
|
|
|
|
|
| |
for debugging locale stuff, but was rarely if ever used...and of course
just bit a big chunk out of our collective hind-ends.
|
|
|
|
| |
committer wasn't using the MicroSlop Natural keyboard though! :)
|
|
|
|
| |
to stop people "fixing" it by snprintf
|
| |
|
|
|
|
|
|
|
| |
I notice info(1) has some problems moving back and forth through the
resulting info file, but emacs doesn't, so i figure it's rather a
problem with info(1) itself. To the least, this file installs now
finally.
|
| |
|
|
|
|
| |
via mdoc macros instead.
|