aboutsummaryrefslogtreecommitdiff
path: root/nptl/sysdeps/pthread/pthread.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-04-18 08:08:11 +0000
committerUlrich Drepper <drepper@redhat.com>2003-04-18 08:08:11 +0000
commit76a67697c890d292d9f32e88cf24f8a3f74e47b9 (patch)
tree4f3eb991e2c781f9748d07db7a97ecb1509be627 /nptl/sysdeps/pthread/pthread.h
parent7d74651eb053324e19605ab8a9421a787ec9f836 (diff)
downloadglibc-76a67697c890d292d9f32e88cf24f8a3f74e47b9.zip
glibc-76a67697c890d292d9f32e88cf24f8a3f74e47b9.tar.gz
glibc-76a67697c890d292d9f32e88cf24f8a3f74e47b9.tar.bz2
Update.
* sysdeps/pthread/pthread.h: Don't mark pthread_testcancel, pthread_cancel, pthread_setcancelstate, and pthread_setcanceltype with
Diffstat (limited to 'nptl/sysdeps/pthread/pthread.h')
-rw-r--r--nptl/sysdeps/pthread/pthread.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/nptl/sysdeps/pthread/pthread.h b/nptl/sysdeps/pthread/pthread.h
index 1433fe5..b8073d8 100644
--- a/nptl/sysdeps/pthread/pthread.h
+++ b/nptl/sysdeps/pthread/pthread.h
@@ -366,14 +366,14 @@ extern int pthread_once (pthread_once_t *__once_control,
/* Set cancelability state of current thread to STATE, returning old
state in *OLDSTATE if OLDSTATE is not NULL. */
-extern int pthread_setcancelstate (int __state, int *__oldstate) __THROW;
+extern int pthread_setcancelstate (int __state, int *__oldstate);
/* Set cancellation state of current thread to TYPE, returning the old
type in *OLDTYPE if OLDTYPE is not NULL. */
-extern int pthread_setcanceltype (int __type, int *__oldtype) __THROW;
+extern int pthread_setcanceltype (int __type, int *__oldtype);
/* Cancel THREAD immediately or at the next possibility. */
-extern int pthread_cancel (pthread_t __th) __THROW;
+extern int pthread_cancel (pthread_t __th);
/* Test for pending cancellation for the current thread and terminate
the thread as per pthread_exit(PTHREAD_CANCELED) if it has been