forked from Imagelibrary/binutils-gdb
* amd64-linux-nat.c (si_timerid,si_overrun): Provide definition for
glibc 2.3.2 and earlier.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2009-03-17 Doug Evans <dje@google.com>
|
||||
|
||||
* amd64-linux-nat.c (si_timerid,si_overrun): Provide definition for
|
||||
glibc 2.3.2 and earlier.
|
||||
|
||||
2009-03-17 Joel Brobecker <brobecker@adacore.com>
|
||||
|
||||
* frame.c (get_prev_frame_1): Do not perform the inner_frame
|
||||
|
||||
@@ -501,6 +501,15 @@ typedef struct compat_siginfo
|
||||
#define cpt_si_band _sifields._sigpoll._band
|
||||
#define cpt_si_fd _sifields._sigpoll._fd
|
||||
|
||||
/* glibc at least up to 2.3.2 doesn't have si_timerid, si_overrun.
|
||||
In their place is si_timer1,si_timer2. */
|
||||
#ifndef si_timerid
|
||||
#define si_timerid si_timer1
|
||||
#endif
|
||||
#ifndef si_overrun
|
||||
#define si_overrun si_timer2
|
||||
#endif
|
||||
|
||||
static void
|
||||
compat_siginfo_from_siginfo (compat_siginfo_t *to, siginfo_t *from)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user