Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 441036
Collapse All | Expand All

(-)insight-6.8-1.orig/gdb/linux-nat.c (-1 / +1 lines)
Lines 3307-3313 linux_nat_set_new_thread (struct target_ 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);
(-)insight-6.8-1.orig/gdb/linux-nat.h (-2 / +2 lines)
Lines 60-66 struct lwp_info 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 void linux_nat_set_new_thread (struct ta 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);

Return to bug 441036