lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame^] | 1 | /* Copyright (C) 2003, 2004 Free Software Foundation, Inc. |
| 2 | This file is part of the GNU C Library. |
| 3 | Contributed by Ulrich Drepper <drepper@redhat.com>, 2003. |
| 4 | |
| 5 | The GNU C Library is free software; you can redistribute it and/or |
| 6 | modify it under the terms of the GNU Lesser General Public |
| 7 | License as published by the Free Software Foundation; either |
| 8 | version 2.1 of the License, or (at your option) any later version. |
| 9 | |
| 10 | The GNU C Library is distributed in the hope that it will be useful, |
| 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 | Lesser General Public License for more details. |
| 14 | |
| 15 | You should have received a copy of the GNU Lesser General Public |
| 16 | License along with the GNU C Library; if not, write to the Free |
| 17 | Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA |
| 18 | 02111-1307 USA. */ |
| 19 | |
| 20 | #include <error.h> |
| 21 | #include <pthread.h> |
| 22 | #include <stdbool.h> |
| 23 | #include <stdio.h> |
| 24 | #include <stdlib.h> |
| 25 | |
| 26 | |
| 27 | #define N 10 |
| 28 | #define ROUNDS 100 |
| 29 | |
| 30 | static pthread_cond_t cond = PTHREAD_COND_INITIALIZER; |
| 31 | static pthread_mutex_t mut = PTHREAD_MUTEX_INITIALIZER; |
| 32 | static pthread_barrier_t bN1; |
| 33 | static pthread_barrier_t b2; |
| 34 | |
| 35 | |
| 36 | static void * |
| 37 | tf (void *p) |
| 38 | { |
| 39 | if (pthread_mutex_lock (&mut) != 0) |
| 40 | { |
| 41 | puts ("child: 1st mutex_lock failed"); |
| 42 | exit (1); |
| 43 | } |
| 44 | |
| 45 | int e = pthread_barrier_wait (&b2); |
| 46 | if (e != 0 && e != PTHREAD_BARRIER_SERIAL_THREAD) |
| 47 | { |
| 48 | puts ("child: 1st barrier_wait failed"); |
| 49 | exit (1); |
| 50 | } |
| 51 | |
| 52 | if (pthread_cond_wait (&cond, &mut) != 0) |
| 53 | { |
| 54 | puts ("child: cond_wait failed"); |
| 55 | exit (1); |
| 56 | } |
| 57 | |
| 58 | if (pthread_mutex_unlock (&mut) != 0) |
| 59 | { |
| 60 | puts ("child: mutex_unlock failed"); |
| 61 | exit (1); |
| 62 | } |
| 63 | |
| 64 | e = pthread_barrier_wait (&bN1); |
| 65 | if (e != 0 && e != PTHREAD_BARRIER_SERIAL_THREAD) |
| 66 | { |
| 67 | puts ("child: 2nd barrier_wait failed"); |
| 68 | exit (1); |
| 69 | } |
| 70 | |
| 71 | return NULL; |
| 72 | } |
| 73 | |
| 74 | |
| 75 | static int |
| 76 | do_test (void) |
| 77 | { |
| 78 | if (pthread_barrier_init (&bN1, NULL, N + 1) != 0) |
| 79 | { |
| 80 | puts ("barrier_init failed"); |
| 81 | exit (1); |
| 82 | } |
| 83 | |
| 84 | if (pthread_barrier_init (&b2, NULL, 2) != 0) |
| 85 | { |
| 86 | puts ("barrier_init failed"); |
| 87 | exit (1); |
| 88 | } |
| 89 | |
| 90 | pthread_attr_t at; |
| 91 | |
| 92 | if (pthread_attr_init (&at) != 0) |
| 93 | { |
| 94 | puts ("attr_init failed"); |
| 95 | return 1; |
| 96 | } |
| 97 | |
| 98 | if (pthread_attr_setstacksize (&at, 1 * 1024 * 1024) != 0) |
| 99 | { |
| 100 | puts ("attr_setstacksize failed"); |
| 101 | return 1; |
| 102 | } |
| 103 | |
| 104 | int r; |
| 105 | for (r = 0; r < ROUNDS; ++r) |
| 106 | { |
| 107 | printf ("round %d\n", r + 1); |
| 108 | |
| 109 | int i; |
| 110 | pthread_t th[N]; |
| 111 | for (i = 0; i < N; ++i) |
| 112 | { |
| 113 | if (pthread_create (&th[i], &at, tf, NULL) != 0) |
| 114 | { |
| 115 | puts ("create failed"); |
| 116 | exit (1); |
| 117 | } |
| 118 | |
| 119 | int e = pthread_barrier_wait (&b2); |
| 120 | if (e != 0 && e != PTHREAD_BARRIER_SERIAL_THREAD) |
| 121 | { |
| 122 | puts ("parent: 1st barrier_wait failed"); |
| 123 | exit (1); |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | if (pthread_mutex_lock (&mut) != 0) |
| 128 | { |
| 129 | puts ("parent: mutex_lock failed"); |
| 130 | exit (1); |
| 131 | } |
| 132 | if (pthread_mutex_unlock (&mut) != 0) |
| 133 | { |
| 134 | puts ("parent: mutex_unlock failed"); |
| 135 | exit (1); |
| 136 | } |
| 137 | |
| 138 | /* N single signal calls. Without locking. This tests that no |
| 139 | signal gets lost. */ |
| 140 | for (i = 0; i < N; ++i) |
| 141 | if (pthread_cond_signal (&cond) != 0) |
| 142 | { |
| 143 | puts ("cond_signal failed"); |
| 144 | exit (1); |
| 145 | } |
| 146 | |
| 147 | int e = pthread_barrier_wait (&bN1); |
| 148 | if (e != 0 && e != PTHREAD_BARRIER_SERIAL_THREAD) |
| 149 | { |
| 150 | puts ("parent: 2nd barrier_wait failed"); |
| 151 | exit (1); |
| 152 | } |
| 153 | |
| 154 | for (i = 0; i < N; ++i) |
| 155 | if (pthread_join (th[i], NULL) != 0) |
| 156 | { |
| 157 | puts ("join failed"); |
| 158 | exit (1); |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | if (pthread_attr_destroy (&at) != 0) |
| 163 | { |
| 164 | puts ("attr_destroy failed"); |
| 165 | return 1; |
| 166 | } |
| 167 | |
| 168 | return 0; |
| 169 | } |
| 170 | |
| 171 | |
| 172 | #define TEST_FUNCTION do_test () |
| 173 | #include "../test-skeleton.c" |