Fix gdb.threads/tls-so_extern.exp with Clang
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.threads / interrupt-while-step-over.c
CommitLineData
c65d6b55
PA
1/* This testcase is part of GDB, the GNU debugger.
2
b811d2c2 3 Copyright 2016-2020 Free Software Foundation, Inc.
c65d6b55
PA
4
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.
9
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.
14
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/>. */
17
18#include <pthread.h>
19#include <unistd.h>
20#include <stdlib.h>
21
22#define NUM_THREADS 20
23const int num_threads = NUM_THREADS;
24
25static pthread_t child_thread[NUM_THREADS];
26
27static pthread_barrier_t threads_started_barrier;
28
29volatile int always_zero;
30volatile unsigned int dummy;
31
32static void
33infinite_loop (void)
34{
35 while (1)
36 {
37 dummy++; /* set breakpoint here */
38 }
39}
40
41static void *
42child_function (void *arg)
43{
44 pthread_barrier_wait (&threads_started_barrier);
45
46 infinite_loop ();
86e4e63d
GB
47
48 return NULL;
c65d6b55
PA
49}
50
51void
52all_started (void)
53{
54}
55
56int
57main (void)
58{
59 int res;
60 int i;
61
62 alarm (300);
63
64 pthread_barrier_init (&threads_started_barrier, NULL, NUM_THREADS + 1);
65
66 for (i = 0; i < NUM_THREADS; i++)
67 {
68 res = pthread_create (&child_thread[i], NULL, child_function, NULL);
69 }
70
71 /* Wait until all threads have been scheduled. */
72 pthread_barrier_wait (&threads_started_barrier);
73
74 all_started ();
75
76 infinite_loop ();
77}
This page took 0.491424 seconds and 4 git commands to generate.