summaryrefslogtreecommitdiff
path: root/libgcc/config/i386/linux-unwind.h
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@codesourcery.com>2012-04-20 09:44:50 +0200
committerThomas Schwinge <tschwinge@gcc.gnu.org>2012-04-20 09:44:50 +0200
commit1bde7dabc9b3c63fd69c6436fe35a2a409c31d52 (patch)
treee8f1712ea0ae177845322cbae1373ba828408d42 /libgcc/config/i386/linux-unwind.h
parentfe0bd630ffa798fa569201dd2ac8278770689b91 (diff)
downloadgcc-1bde7dabc9b3c63fd69c6436fe35a2a409c31d52.tar.gz
struct siginfo vs. siginfo_t
libgcc/ * config/alpha/linux-unwind.h (alpha_fallback_frame_state): Use siginfo_t instead of struct siginfo. * config/bfin/linux-unwind.h (bfin_fallback_frame_state): Likewise. * config/i386/linux-unwind.h (x86_fallback_frame_state): Likewise. * config/ia64/linux-unwind.h (ia64_fallback_frame_state) (ia64_handle_unwabi): Likewise. * config/mips/linux-unwind.h (mips_fallback_frame_state): Likewise. * config/pa/linux-unwind.h (pa32_fallback_frame_state): Likewise. * config/sh/linux-unwind.h (shmedia_fallback_frame_state) (sh_fallback_frame_state): Likewise. * config/tilepro/linux-unwind.h (tile_fallback_frame_state): Likewise. * config/xtensa/linux-unwind.h (xtensa_fallback_frame_state): Likewise. From-SVN: r186610
Diffstat (limited to 'libgcc/config/i386/linux-unwind.h')
-rw-r--r--libgcc/config/i386/linux-unwind.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libgcc/config/i386/linux-unwind.h b/libgcc/config/i386/linux-unwind.h
index ad0ccfa0be7..02b1897f039 100644
--- a/libgcc/config/i386/linux-unwind.h
+++ b/libgcc/config/i386/linux-unwind.h
@@ -1,5 +1,5 @@
/* DWARF2 EH unwinding support for AMD x86-64 and x86.
- Copyright (C) 2004, 2005, 2006, 2009, 2010, 2011
+ Copyright (C) 2004, 2005, 2006, 2009, 2010, 2011, 2012
Free Software Foundation, Inc.
This file is part of GCC.
@@ -136,9 +136,9 @@ x86_fallback_frame_state (struct _Unwind_Context *context,
{
struct rt_sigframe {
int sig;
- struct siginfo *pinfo;
+ siginfo_t *pinfo;
void *puc;
- struct siginfo info;
+ siginfo_t info;
struct ucontext uc;
} *rt_ = context->cfa;
/* The void * cast is necessary to avoid an aliasing warning.