mirror of
git://sourceware.org/git/glibc.git
synced 2025-02-23 13:09:58 +08:00
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>
|
||||
|
||||
* 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
|
||||
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. */
|
||||
|
Loading…
Reference in New Issue
Block a user