Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 451692 | Differences between
and this patch

Collapse All | Expand All

(-)gdb/ia64-linux-nat.c.ORIG (-1 / +1 lines)
Lines 637-643 Link Here
637
ia64_linux_stopped_data_address (struct target_ops *ops, CORE_ADDR *addr_p)
637
ia64_linux_stopped_data_address (struct target_ops *ops, CORE_ADDR *addr_p)
638
{
638
{
639
  CORE_ADDR psr;
639
  CORE_ADDR psr;
640
  struct siginfo *siginfo_p;
640
  siginfo_t *siginfo_p;
641
  struct regcache *regcache = get_current_regcache ();
641
  struct regcache *regcache = get_current_regcache ();
642
642
643
  siginfo_p = linux_nat_get_siginfo (inferior_ptid);
643
  siginfo_p = linux_nat_get_siginfo (inferior_ptid);
(-)gdb/linux-nat.c.ORIG (-1 / +1 lines)
Lines 3307-3313 Link Here
3307
}
3307
}
3308
3308
3309
/* Return the saved siginfo associated with PTID.  */
3309
/* Return the saved siginfo associated with PTID.  */
3310
struct siginfo *
3310
siginfo_t *
3311
linux_nat_get_siginfo (ptid_t ptid)
3311
linux_nat_get_siginfo (ptid_t ptid)
3312
{
3312
{
3313
  struct lwp_info *lp = find_lwp_pid (ptid);
3313
  struct lwp_info *lp = find_lwp_pid (ptid);
(-)gdb/linux-nat.h.ORIG (-2 / +2 lines)
Lines 60-66 Link Here
60
60
61
  /* Non-zero si_signo if this LWP stopped with a trap.  si_addr may
61
  /* Non-zero si_signo if this LWP stopped with a trap.  si_addr may
62
     be the address of a hardware watchpoint.  */
62
     be the address of a hardware watchpoint.  */
63
  struct siginfo siginfo;
63
  siginfo_t siginfo;
64
64
65
  /* If WAITSTATUS->KIND != TARGET_WAITKIND_SPURIOUS, the waitstatus
65
  /* If WAITSTATUS->KIND != TARGET_WAITKIND_SPURIOUS, the waitstatus
66
     for this LWP's last event.  This may correspond to STATUS above,
66
     for this LWP's last event.  This may correspond to STATUS above,
Lines 123-126 Link Here
123
void linux_nat_switch_fork (ptid_t new_ptid);
123
void linux_nat_switch_fork (ptid_t new_ptid);
124
124
125
/* Return the saved siginfo associated with PTID.  */
125
/* Return the saved siginfo associated with PTID.  */
126
struct siginfo *linux_nat_get_siginfo (ptid_t ptid);
126
siginfo_t *linux_nat_get_siginfo (ptid_t ptid);
(-)gdb/ppc-linux-nat.c.ORIG (-1 / +1 lines)
Lines 870-876 Link Here
870
static int
870
static int
871
ppc_linux_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
871
ppc_linux_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
872
{
872
{
873
  struct siginfo *siginfo_p;
873
  siginfo_t *siginfo_p;
874
874
875
  siginfo_p = linux_nat_get_siginfo (inferior_ptid);
875
  siginfo_p = linux_nat_get_siginfo (inferior_ptid);
876
876
(-)gdb/procfs.c.ORIG (-1 / +1 lines)
Lines 246-252 Link Here
246
#ifdef HAVE_PR_SIGINFO64_T
246
#ifdef HAVE_PR_SIGINFO64_T
247
typedef pr_siginfo64_t gdb_siginfo_t;
247
typedef pr_siginfo64_t gdb_siginfo_t;
248
#else
248
#else
249
typedef struct siginfo gdb_siginfo_t;
249
typedef siginfo_t gdb_siginfo_t;
250
#endif
250
#endif
251
251
252
/* gdb_premptysysset */
252
/* gdb_premptysysset */

Return to bug 451692