1 /* This testcase is part of GDB, the GNU debugger.
3 Copyright 2016-2020 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program 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
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 #define NUM_THREADS 20
23 const int num_threads
= NUM_THREADS
;
25 static pthread_t child_thread
[NUM_THREADS
];
27 static pthread_barrier_t threads_started_barrier
;
29 volatile int always_zero
;
30 volatile unsigned int dummy
;
37 dummy
++; /* set breakpoint here */
42 child_function (void *arg
)
44 pthread_barrier_wait (&threads_started_barrier
);
62 pthread_barrier_init (&threads_started_barrier
, NULL
, NUM_THREADS
+ 1);
64 for (i
= 0; i
< NUM_THREADS
; i
++)
66 res
= pthread_create (&child_thread
[i
], NULL
, child_function
, NULL
);
69 /* Wait until all threads have been scheduled. */
70 pthread_barrier_wait (&threads_started_barrier
);