aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.threads/pending-fork-event-detach-ns.c
blob: c1669f1533fa6782b326c145dcad4abe601ad003 (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
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
/* This testcase is part of GDB, the GNU debugger.

   Copyright 2021-2022 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 <assert.h>
#include <errno.h>
#include <poll.h>
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/wait.h>
#include <unistd.h>

#define NUM_FORKING_THREADS 12

static pthread_barrier_t barrier;
static volatile int should_exit = 0;

static void
sigusr1_handler (int sig, siginfo_t *siginfo, void *context)
{
  should_exit = 1;
}

static void *
forking_thread (void *arg)
{
  /* Wait for all forking threads to have spawned before fork-spamming.  */
  pthread_barrier_wait (&barrier);

  while (!should_exit)
    {
      pid_t pid = fork ();
      if (pid == 0)
	{
	  /* Child */
	  exit (8);
	}
      else
	{
	  /* Parent */
	  int status;
	  int ret = waitpid (pid, &status, 0);
	  assert (ret == pid);
	  assert (WIFEXITED (status));
	  assert (WEXITSTATUS (status) == 8);
	}
    }

  return NULL;
}

static void
break_here_first (void)
{
}

static pid_t my_pid;

int
main (void)
{
  pthread_t forking_threads[NUM_FORKING_THREADS];
  int ret;
  struct sigaction sa;
  int i;

  /* Just to make sure we don't run for ever.  */
  alarm (30);

  my_pid = getpid ();

  break_here_first ();

  pthread_barrier_init (&barrier, NULL, NUM_FORKING_THREADS);

  memset (&sa, 0, sizeof (sa));
  sa.sa_sigaction = sigusr1_handler;
  ret = sigaction (SIGUSR1, &sa, NULL);
  assert (ret == 0);

  for (i = 0; i < NUM_FORKING_THREADS; ++i)
    {
      ret = pthread_create (&forking_threads[i], NULL, forking_thread, NULL);
      assert (ret == 0);
    }

  for (i = 0; i < NUM_FORKING_THREADS; ++i)
    {
      ret = pthread_join (forking_threads[i], NULL);
      assert (ret == 0);
    }

  FILE *f = fopen (TOUCH_FILE_PATH, "w");
  assert (f != NULL);
  ret = fclose (f);
  assert (ret == 0);

  return 0;
}