aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.mi/mi-thread-bp-deleted.c
blob: 5ac23b4ab255acba2196e79eed9e7ebb27e3d691 (plain)
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
/* Copyright 2023 Free Software Foundation, Inc.

   This file is part of GDB.

   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 <unistd.h>
#include <stdlib.h>

#define NTHREAD 1

/* Barrier for synchronising threads.  */
static pthread_barrier_t barrier;

/* Wrapper around pthread_barrier_wait that aborts if the wait returns an
   error.  */
static void
barrier_wait (pthread_barrier_t *barrier)
{
  int res = pthread_barrier_wait (barrier);
  if (res != PTHREAD_BARRIER_SERIAL_THREAD && res != 0)
    abort ();
}

/* GDB can set this to 0 to force the 'spin' function to return.  */
volatile int do_spin = 1;

void
breakpt ()
{
  /* Nothing.  */
}

/* Spin for a reasonably long while (this lets GDB run some commands in
   async mode), but return early if/when do_spin is set to 0 (which is done
   by GDB).  */

void
spin ()
{
  int i;

  for (i = 0; i < 300 && do_spin; ++i)
    sleep (1);
}

void *
thread_worker (void *arg)
{
  barrier_wait (&barrier);
  return NULL;
}

int
main ()
{
  pthread_t thr[NTHREAD];
  int i;

  if (pthread_barrier_init (&barrier, NULL, NTHREAD + 1) != 0)
    abort ();

  for (i = 0; i < NTHREAD; ++i)
    pthread_create (&thr[i], NULL, thread_worker, NULL);

  breakpt ();	/* First breakpoint.  */

  barrier_wait (&barrier);

  for (i = 0; i < NTHREAD; ++i)
    pthread_join (thr[i], NULL);

  spin ();

  breakpt ();
}