mirror of git://sourceware.org/git/glibc.git
Update.
2003-04-18 Ulrich Drepper <drepper@redhat.com> * sysdeps/pthread/pthread.h: Don't mark pthread_testcancel with __THROW.
This commit is contained in:
parent
7c2842bfc5
commit
7d74651eb0
|
|
@ -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>
|
2003-04-16 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
* tst-cancel4.c (do_test): Use %zd instead of %d when printing cnt.
|
* tst-cancel4.c (do_test): Use %zd instead of %d when printing cnt.
|
||||||
|
|
|
||||||
|
|
@ -377,8 +377,12 @@ extern int pthread_cancel (pthread_t __th) __THROW;
|
||||||
|
|
||||||
/* Test for pending cancellation for the current thread and terminate
|
/* Test for pending cancellation for the current thread and terminate
|
||||||
the thread as per pthread_exit(PTHREAD_CANCELED) if it has been
|
the thread as per pthread_exit(PTHREAD_CANCELED) if it has been
|
||||||
cancelled. */
|
cancelled.
|
||||||
extern void pthread_testcancel (void) __THROW;
|
|
||||||
|
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. */
|
/* Cancellation handling with integration into exception handling. */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue