diff options
| author | Carmelo Amoroso <carmelo.amoroso@st.com> | 2007-11-19 15:35:12 +0000 | 
|---|---|---|
| committer | Carmelo Amoroso <carmelo.amoroso@st.com> | 2007-11-19 15:35:12 +0000 | 
| commit | 414d8e5f2a73aff8e9404684571a65f85b27bf89 (patch) | |
| tree | 879ac217d477f76cf965b244d98b383b663ff47b /libpthread/nptl/sysdeps/pthread/unwind-resume.c | |
| parent | 381fb7688d356f03e35b9254796adb29c941532b (diff) | |
| download | uClibc-alpine-414d8e5f2a73aff8e9404684571a65f85b27bf89.tar.bz2 uClibc-alpine-414d8e5f2a73aff8e9404684571a65f85b27bf89.tar.xz  | |
Synch nptl branch with SH port: as requested by sjhill for mips-ash4 merge
Diffstat (limited to 'libpthread/nptl/sysdeps/pthread/unwind-resume.c')
| -rw-r--r-- | libpthread/nptl/sysdeps/pthread/unwind-resume.c | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/libpthread/nptl/sysdeps/pthread/unwind-resume.c b/libpthread/nptl/sysdeps/pthread/unwind-resume.c index 594296723..018d2fd2f 100644 --- a/libpthread/nptl/sysdeps/pthread/unwind-resume.c +++ b/libpthread/nptl/sysdeps/pthread/unwind-resume.c @@ -27,13 +27,16 @@ static _Unwind_Reason_Code (*libgcc_s_personality)    (int, _Unwind_Action, _Unwind_Exception_Class, struct _Unwind_Exception *,     struct _Unwind_Context *); +extern +void abort(void); +  static void  init (void)  {    void *resume = NULL;    void *personality = NULL;    void *handle; - +  resume = personality = NULL; /* make gcc silent */    handle = dlopen ("libgcc_s.so.1", (RTLD_LOCAL | RTLD_LAZY));    if (handle == NULL  | 
