2003-04-18  Ulrich Drepper  <drepper@redhat.com>

	* sysdeps/pthread/pthread.h: Don't mark pthread_testcancel with
	__THROW.
This commit is contained in:
Ulrich Drepper 2003-04-18 08:01:53 +00:00
parent 7c2842bfc5
commit 7d74651eb0
2 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,8 @@
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.

View File

@ -377,8 +377,12 @@ extern int pthread_cancel (pthread_t __th) __THROW;
/* 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. */