2003-04-18 Ulrich Drepper <drepper@redhat.com>
* sysdeps/pthread/pthread.h: Don't mark pthread_testcancel with
__THROW.
+2003-04-18 Ulrich Drepper <drepper@redhat.com>
+
+ * sysdeps/pthread/pthread.h: Don't mark pthread_testcancel with
+ __THROW.
+
2003-04-16 Jakub Jelinek <jakub@redhat.com>
* tst-cancel4.c (do_test): Use %zd instead of %d when printing cnt.
/* Test for pending cancellation for the current thread and terminate
the thread as per pthread_exit(PTHREAD_CANCELED) if it has been
- cancelled. */
-extern void pthread_testcancel (void) __THROW;
+ cancelled.
+
+ Note that this function is explicitly not marked to not throw an
+ exception in C++ code. If cancellation is implemented by unwinding
+ this is necessary to have the compiler generate the unwind information. */
+extern void pthread_testcancel (void);
/* Cancellation handling with integration into exception handling. */