diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-04-13 08:04:46 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-04-13 08:04:46 +0000 |
commit | 08c765fa6e664c584659a476dadfc926d6c74254 (patch) | |
tree | 384ba1fecb63bf12fa1fb08a353c343341e8740d /nptl/Makefile | |
parent | 7cc1894ca82cb5709205eed6adfbb002ab02de79 (diff) | |
download | glibc-08c765fa6e664c584659a476dadfc926d6c74254.tar.gz glibc-08c765fa6e664c584659a476dadfc926d6c74254.tar.xz glibc-08c765fa6e664c584659a476dadfc926d6c74254.zip |
Update.
2003-04-13 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Add unwind info. * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: Likewise. * Makefile: Make sure all cancellation points are compiled with exception and asynchronous unwind tables.
Diffstat (limited to 'nptl/Makefile')
-rw-r--r-- | nptl/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/nptl/Makefile b/nptl/Makefile index 79d28c9a30..4de004a514 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -125,6 +125,11 @@ libpthread-nonshared = pthread_atfork CFLAGS-pthread_atfork.c = -DNOT_IN_libc CFLAGS-init.c = -fexceptions -fasynchronous-unwind-tables CFLAGS-unwind.c = -fexceptions +CFLAGS-pthread_testcancel.c = -fexceptions +CFLAGS-pthread_join.c = -fexceptions -fasynchronous-unwind-tables +CFLAGS-pthread_timedjoin.c = -fexceptions -fasynchronous-unwind-tables +CFLAGS-pthread_cond_wait.c = -fexceptions -fasynchronous-unwind-tables +CFLAGS-pthread_cond_timedwait.c = -fexceptions -fasynchronous-unwind-tables CFLAGS-cancellation.c = -fasynchronous-unwind-tables CFLAGS-libc-cancellation.c = -fasynchronous-unwind-tables |