]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Fri, 18 Apr 2003 08:08:11 +0000 (08:08 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 18 Apr 2003 08:08:11 +0000 (08:08 +0000)
* sysdeps/pthread/pthread.h: Don't mark pthread_testcancel,
pthread_cancel, pthread_setcancelstate, and pthread_setcanceltype with

nptl/ChangeLog
nptl/sysdeps/pthread/pthread.h

index a456d5c57548c64728b1db17a44e953876824aef..2d94b1489d3a26fe0070eb8ea3c81f474d743b41 100644 (file)
@@ -1,6 +1,7 @@
 2003-04-18  Ulrich Drepper  <drepper@redhat.com>
 
-       * sysdeps/pthread/pthread.h: Don't mark pthread_testcancel with
+       * sysdeps/pthread/pthread.h: Don't mark pthread_testcancel,
+       pthread_cancel, pthread_setcancelstate, and pthread_setcanceltype with
        __THROW.
 
 2003-04-16  Jakub Jelinek  <jakub@redhat.com>
index 1433fe56f7ffcc3910eff1729b9e5cebc62f40e9..b8073d83b94f6334404fe7e3e67c9c9f2ec594f1 100644 (file)
@@ -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
This page took 0.051202 seconds and 5 git commands to generate.