mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 19:00:07 +00:00
Update.
1999-06-04 Andreas Jaeger <aj@arthur.rhein-neckar.de> * math/libm-test.c (yn_test): Change one delta. (jn_test): Likewise. (j1_test): Likewise. (y0_test): Likewise.
This commit is contained in:
parent
b3864d70e7
commit
a582750d70
@ -1,3 +1,10 @@
|
||||
1999-06-04 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
||||
|
||||
* math/libm-test.c (yn_test): Change one delta.
|
||||
(jn_test): Likewise.
|
||||
(j1_test): Likewise.
|
||||
(y0_test): Likewise.
|
||||
|
||||
1999-06-06 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* malloc/malloc.c: Introduce local variable __libc_getpagesize to
|
||||
|
2
FAQ
2
FAQ
@ -634,7 +634,7 @@ US.
|
||||
the libc.so which comes with glibc all I get is a core dump.
|
||||
|
||||
{UD} On Linux, gcc sets the dynamic linker to /lib/ld-linux.so.1 unless the
|
||||
user specifies a -dynamic-linker argument. This is the name of the libc5
|
||||
user specifies a --dynamic-linker argument. This is the name of the libc5
|
||||
dynamic linker, which does not work with glibc.
|
||||
|
||||
For casual use of GNU libc you can just specify to the linker
|
||||
|
@ -1656,7 +1656,7 @@ ptmalloc_init __MALLOC_P((void))
|
||||
/* Initialize the pthreads interface. */
|
||||
if (__pthread_initialize != NULL)
|
||||
__pthread_initialize();
|
||||
__libc_getpagesize = __getpagesize();
|
||||
__libc_pagesize = __getpagesize();
|
||||
#endif
|
||||
mutex_init(&main_arena.mutex);
|
||||
mutex_init(&list_lock);
|
||||
|
@ -5547,7 +5547,7 @@ j1_test (void)
|
||||
check_eps ("j1 (8.0) = 0.23463...", FUNC(j1) (8.0), 0.23463634685391462438,
|
||||
CHOOSE(0, 0, 1.5e-8));
|
||||
check_eps ("j1 (10.0) = 0.04347...", FUNC(j1) (10.0), 0.043472746168861436670,
|
||||
CHOOSE(0, 7e-18, 3.8e-9));
|
||||
CHOOSE(0, 2e-17, 3.8e-9));
|
||||
}
|
||||
|
||||
static void
|
||||
@ -5592,7 +5592,7 @@ jn_test (void)
|
||||
check_eps ("jn (1, 8.0) = 0.23463...", FUNC(jn) (1, 8.0), 0.23463634685391462438,
|
||||
CHOOSE(0, 0, 1.5e-8));
|
||||
check_eps ("jn (1, 10.0) = 0.04347...", FUNC(jn) (1, 10.0), 0.043472746168861436670,
|
||||
CHOOSE(0, 7e-18, 3.8e-9));
|
||||
CHOOSE(0, 2e-17, 3.8e-9));
|
||||
|
||||
/* jn (3, x) */
|
||||
check_isnan ("jn (3, NaN) = NaN", FUNC(jn) (3, nan_value));
|
||||
@ -5657,7 +5657,7 @@ y0_test (void)
|
||||
check_eps ("y0 (8.0) = 0.22352...", FUNC(y0) (8.0), 0.22352148938756622053,
|
||||
CHOOSE(0, 3e-17, 1.5e-8));
|
||||
check_eps ("y0 (10.0) = 0.05567...", FUNC(y0) (10.0), 0.055671167283599391424,
|
||||
CHOOSE(0, 0, 3.8e-9));
|
||||
CHOOSE(0, 2e-17, 3.8e-9));
|
||||
}
|
||||
|
||||
|
||||
@ -5721,7 +5721,7 @@ yn_test (void)
|
||||
check_eps ("yn (0, 8.0) = 0.22352...", FUNC(yn) (0, 8.0), 0.22352148938756622053,
|
||||
CHOOSE(0, 3e-17, 1.5e-8));
|
||||
check_eps ("yn (0, 10.0) = 0.05567...", FUNC(yn) (0, 10.0), 0.055671167283599391424,
|
||||
CHOOSE(0, 0, 3.8e-8));
|
||||
CHOOSE(0, 2e-17, 3.8e-8));
|
||||
|
||||
/* yn (1, x) == y1 (x) */
|
||||
check_isinfn ("yn (1, -1.0) = -inf", FUNC(yn) (1, -1.0));
|
||||
|
Loading…
Reference in New Issue
Block a user