mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-23 03:10:05 +00:00
Update.
* sysdeps/ieee754/ldbl-96/s_modfl.c: Correct handling of arguments with exponent >31 and < 63 (PR libc/1548).
This commit is contained in:
parent
ee00109cd0
commit
16ac79ca94
@ -1,5 +1,8 @@
|
|||||||
2000-01-19 Ulrich Drepper <drepper@cygnus.com>
|
2000-01-19 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* sysdeps/ieee754/ldbl-96/s_modfl.c: Correct handling of arguments
|
||||||
|
with exponent >31 and < 63 (PR libc/1548).
|
||||||
|
|
||||||
* locale/programs/ld-collate.c (output_weightwc): Return index
|
* locale/programs/ld-collate.c (output_weightwc): Return index
|
||||||
measured in words, not bytes. Don't write out words for ignored
|
measured in words, not bytes. Don't write out words for ignored
|
||||||
characters.
|
characters.
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2000-01-19 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* td_thr_getgregs.c: Correct size parameter of memset call.
|
||||||
|
|
||||||
1999-12-02 Ulrich Drepper <drepper@cygnus.com>
|
1999-12-02 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
* proc_service.h: Fix typos in last added declaractions.
|
* proc_service.h: Fix typos in last added declaractions.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Get a thread's general register set.
|
/* Get a thread's general register set.
|
||||||
Copyright (C) 1999 Free Software Foundation, Inc.
|
Copyright (C) 1999, 2000 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
|
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
|
||||||
|
|
||||||
@ -35,7 +35,7 @@ td_thr_getgregs (const td_thrhandle_t *th, prgregset_t gregs)
|
|||||||
|
|
||||||
/* If the thread already terminated we return all zeroes. */
|
/* If the thread already terminated we return all zeroes. */
|
||||||
if (pds.p_terminated)
|
if (pds.p_terminated)
|
||||||
memset (gregs, '\0', sizeof (gregs));
|
memset (gregs, '\0', sizeof (prgrepset_t));
|
||||||
/* Otherwise get the register content through the callback. */
|
/* Otherwise get the register content through the callback. */
|
||||||
else if (ps_lgetregs (th->th_ta_p->ph, pds.p_pid, gregs) != PS_OK)
|
else if (ps_lgetregs (th->th_ta_p->ph, pds.p_pid, gregs) != PS_OK)
|
||||||
return TD_ERR;
|
return TD_ERR;
|
||||||
|
@ -71,7 +71,7 @@ static long double one = 1.0;
|
|||||||
SET_LDOUBLE_WORDS(x,se&0x8000,0,0); /* return +-0 */
|
SET_LDOUBLE_WORDS(x,se&0x8000,0,0); /* return +-0 */
|
||||||
return x;
|
return x;
|
||||||
} else { /* fraction part in low x */
|
} else { /* fraction part in low x */
|
||||||
i = ((u_int32_t)(0xffffffff))>>(j0-32);
|
i = ((u_int32_t)(0x7fffffff))>>(j0-32);
|
||||||
if((i1&i)==0) { /* x is integral */
|
if((i1&i)==0) { /* x is integral */
|
||||||
*iptr = x;
|
*iptr = x;
|
||||||
SET_LDOUBLE_WORDS(x,se&0x8000,0,0); /* return +-0 */
|
SET_LDOUBLE_WORDS(x,se&0x8000,0,0); /* return +-0 */
|
||||||
|
Loading…
Reference in New Issue
Block a user