Don't check error return for pthread_cancel in tst-cond25
authorSiddhesh Poyarekar <siddhesh@redhat.com>
Wed, 17 Oct 2012 15:32:56 +0000 (21:02 +0530)
committerSiddhesh Poyarekar <siddhesh@redhat.com>
Wed, 17 Oct 2012 15:32:56 +0000 (21:02 +0530)
nptl/ChangeLog
nptl/tst-cond25.c

index 4553250..3b28864 100644 (file)
@@ -1,3 +1,8 @@
+2012-10-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
+
+       * tst-cond25 (do_test_wait): Don't check for return value from
+       pthread_cancel.
+
 2012-10-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
 
        [BZ #14652]
index 4488e74..370cd67 100644 (file)
@@ -228,11 +228,7 @@ do_test_wait (thr_func f)
 
       for (j = 0; j < NUM; j++)
         {
-          if ((ret = pthread_cancel (w[j])) != 0)
-           {
-             printf ("waiter[%d]: cancel failed: %s\n", j, strerror (ret));
-             goto out;
-           }
+          pthread_cancel (w[j]);
 
           if ((ret = pthread_join (w[j], &thr_ret)) != 0)
            {