mirror of git://sourceware.org/git/glibc.git
* sysdeps/generic/unwind-dw2.c (execute_cfa_program): Fix typo in
the last change. DW_CFA_GNU_window_save if it obviously cannot work [Coverity CID 102].
This commit is contained in:
parent
053f7b2b47
commit
2035d91c38
|
|
@ -1,3 +1,8 @@
|
||||||
|
2006-04-07 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/generic/unwind-dw2.c (execute_cfa_program): Fix typo in
|
||||||
|
the last change.
|
||||||
|
|
||||||
2006-04-07 Ulrich Drepper <drepper@redhat.com>
|
2006-04-07 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* inet/rexec.c (rexec_af): If we have no canonical name don't
|
* inet/rexec.c (rexec_af): If we have no canonical name don't
|
||||||
|
|
@ -15,7 +20,7 @@
|
||||||
* intl/explodename.c (_nl_explode_name): Likewise.
|
* intl/explodename.c (_nl_explode_name): Likewise.
|
||||||
|
|
||||||
* sysdeps/generic/unwind-dw2.c (execute_cfa_program): Don't handle
|
* sysdeps/generic/unwind-dw2.c (execute_cfa_program): Don't handle
|
||||||
DW_CFA_GNU_windiw_save if it obviously cannot work [Coverity CID 102].
|
DW_CFA_GNU_window_save if it obviously cannot work [Coverity CID 102].
|
||||||
|
|
||||||
* locale/programs/ld-address.c (address_finish): Fix conditions
|
* locale/programs/ld-address.c (address_finish): Fix conditions
|
||||||
for error messages [Coverity CID 104].
|
for error messages [Coverity CID 104].
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
2006-04-07 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* pthreadP.h (FUTEX_TID_MASK): Sync with kernel.
|
||||||
|
|
||||||
2006-04-06 Ulrich Drepper <drepper@redhat.com>
|
2006-04-06 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* pthread_getattr_np.c (pthread_getattr_np): Close fp if getrlimit
|
* pthread_getattr_np.c (pthread_getattr_np): Close fp if getrlimit
|
||||||
|
|
|
||||||
|
|
@ -90,7 +90,7 @@ enum
|
||||||
/* Bits used in robust mutex implementation. */
|
/* Bits used in robust mutex implementation. */
|
||||||
#define FUTEX_WAITERS 0x80000000
|
#define FUTEX_WAITERS 0x80000000
|
||||||
#define FUTEX_OWNER_DIED 0x40000000
|
#define FUTEX_OWNER_DIED 0x40000000
|
||||||
#define FUTEX_TID_MASK 0x1fffffff
|
#define FUTEX_TID_MASK 0x3fffffff
|
||||||
|
|
||||||
|
|
||||||
/* Internal variables. */
|
/* Internal variables. */
|
||||||
|
|
|
||||||
|
|
@ -900,7 +900,7 @@ execute_cfa_program (const unsigned char *insn_ptr,
|
||||||
/* ??? Hardcoded for SPARC register window configuration.
|
/* ??? Hardcoded for SPARC register window configuration.
|
||||||
At least do not do anything for archs which explicitly
|
At least do not do anything for archs which explicitly
|
||||||
define a lower register number. */
|
define a lower register number. */
|
||||||
#if DWARF_FRAME_REGISTERS < 32
|
#if DWARF_FRAME_REGISTERS >= 32
|
||||||
for (reg = 16; reg < 32; ++reg)
|
for (reg = 16; reg < 32; ++reg)
|
||||||
{
|
{
|
||||||
fs->regs.reg[reg].how = REG_SAVED_OFFSET;
|
fs->regs.reg[reg].how = REG_SAVED_OFFSET;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue