summaryrefslogtreecommitdiffstats
path: root/libpthread/nptl/sysdeps/pthread/unwind-resume.c
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2005-11-16 03:00:38 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2005-11-16 03:00:38 +0000
commit4fadeffd0a6d03c31a88363d47fcb978073894d2 (patch)
tree3b64d7a18affcbf99555b56a6459a771a8716723 /libpthread/nptl/sysdeps/pthread/unwind-resume.c
parent81dca7a3377e5b100f81fc6eda6a114cc80274ff (diff)
downloaduClibc-alpine-4fadeffd0a6d03c31a88363d47fcb978073894d2.tar.bz2
uClibc-alpine-4fadeffd0a6d03c31a88363d47fcb978073894d2.tar.xz
Remove '__libc_fatal' function and usage of it. Remove and disable 'freeres' code having to do with internal library memory usage and GDB. uClibc homey don't play that.
Diffstat (limited to 'libpthread/nptl/sysdeps/pthread/unwind-resume.c')
-rw-r--r--libpthread/nptl/sysdeps/pthread/unwind-resume.c5
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 088f4c6f6..021024d49 100644
--- a/libpthread/nptl/sysdeps/pthread/unwind-resume.c
+++ b/libpthread/nptl/sysdeps/pthread/unwind-resume.c
@@ -37,7 +37,10 @@ init (void)
if (handle == NULL
|| (resume = __libc_dlsym (handle, "_Unwind_Resume")) == NULL
|| (personality = __libc_dlsym (handle, "__gcc_personality_v0")) == NULL)
- __libc_fatal ("libgcc_s.so.1 must be installed for pthread_cancel to work\n");
+ {
+ printf("libgcc_s.so.1 must be installed for pthread_cancel to work\n");
+ abort();
+ }
libgcc_s_resume = resume;
libgcc_s_personality = personality;