1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
|
/* This testcase is part of GDB, the GNU debugger.
Copyright 2020-2024 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include <pthread.h>
#include <sys/types.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
/* The number of threads to create. */
int thread_count = 3;
/* Counter accessed from threads to ensure that all threads have been
started. Is initialised to THREAD_COUNT and each thread decrements it
upon startup. */
volatile int counter;
/* Lock guarding COUNTER. */
pthread_mutex_t counter_mutex = PTHREAD_MUTEX_INITIALIZER;
/* Is initialised with our pid, GDB will read this. */
pid_t global_pid;
/* Just somewhere to put a breakpoint. */
static void
breakpt ()
{
/* Nothing. */
}
/* Thread safe decrement of the COUNTER global. */
static void
decrement_counter ()
{
if (pthread_mutex_lock (&counter_mutex) != 0)
abort ();
--counter;
if (pthread_mutex_unlock (&counter_mutex) != 0)
abort ();
}
/* Thread safe read of the COUNTER global. */
static int
read_counter ()
{
int val;
if (pthread_mutex_lock (&counter_mutex) != 0)
abort ();
val = counter;
if (pthread_mutex_unlock (&counter_mutex) != 0)
abort ();
return val;
}
#if defined DO_EXIT_TEST
/* Thread entry point. ARG is a pointer to a single integer, the ID for
this thread numbered 1 to THREAD_COUNT (a global). */
static void *
thread_worker_exiting (void *arg)
{
int id;
id = *((int *) arg);
decrement_counter ();
if (id != thread_count)
{
int i;
/* All threads except the last one will wait here while the test is
carried out. Don't wait forever though, just in case the test
goes wrong. */
for (i = 0; i < 60; ++i)
sleep (1);
}
else
{
/* The last thread waits here until all other threads have been
created. */
while (read_counter () > 0)
sleep (1);
/* Hit the breakpoint so GDB can stop. */
breakpt ();
/* And exit all threads. */
exit (0);
}
return NULL;
}
#define thread_worker thread_worker_exiting
#elif defined DO_SIGNAL_TEST
/* Thread entry point. ARG is a pointer to a single integer, the ID for
this thread numbered 1 to THREAD_COUNT (a global). */
static void *
thread_worker_signalling (void *arg)
{
int i, id;
id = *((int *) arg);
decrement_counter ();
if (id == thread_count)
{
/* The last thread waits here until all other threads have been
created. */
while (read_counter () > 0)
sleep (1);
/* Hit the breakpoint so GDB can stop. */
breakpt ();
}
/* All threads wait here while the testsuite sends us a signal. Don't
block forever though, just in case the test goes wrong. */
for (i = 0; i < 60; ++i)
sleep (1);
return NULL;
}
#define thread_worker thread_worker_signalling
#else
#error "Compile with DO_EXIT_TEST or DO_SIGNAL_TEST defined"
#endif
struct thread_info
{
pthread_t thread;
int id;
};
int
main ()
{
int i, max = thread_count;
/* Put the pid somewhere easy for GDB to read. */
global_pid = getpid ();
/* Space to hold all of the thread_info objects. */
struct thread_info *info = malloc (sizeof (struct thread_info) * max);
if (info == NULL)
abort ();
/* Initialise the counter. Don't do this under lock as we only have the
main thread at this point. */
counter = thread_count;
/* Create all of the threads. */
for (i = 0; i < max; ++i)
{
struct thread_info *thr = &info[i];
thr->id = i + 1;
if (pthread_create (&thr->thread, NULL, thread_worker, &thr->id) != 0)
abort ();
}
/* Gather in all of the threads. This never completes, as the
final thread created will exit the process, and all of the other
threads block forever. Still, it gives the main thread something to
do. */
for (i = 0; i < max; ++i)
{
struct thread_info *thr = &info[i];
if (pthread_join (thr->thread, NULL) != 0)
abort ();
}
free (info);
/* Return non-zero. We should never get here, but if we do make sure we
indicate something has gone wrong. */
return 1;
}
|