]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.base/fork-running-state.c
[gdb/testsuite] Fix hang in fork-running-state.c
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / fork-running-state.c
1 /* This testcase is part of GDB, the GNU debugger.
2
3 Copyright 2015-2018 Free Software Foundation, Inc.
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 <unistd.h>
19 #include <stdio.h>
20 #include <sys/types.h>
21 #include <sys/wait.h>
22
23 int save_parent;
24
25 /* The fork child. Just runs forever. */
26
27 static int
28 fork_child (void)
29 {
30 /* Don't run forever. */
31 alarm (180);
32
33 while (1)
34 pause ();
35
36 return 0;
37 }
38
39 /* The fork parent. Just runs forever. */
40
41 static int
42 fork_parent (void)
43 {
44 /* Don't run forever. */
45 alarm (180);
46
47 while (1)
48 pause ();
49
50 return 0;
51 }
52
53 int
54 main (void)
55 {
56 pid_t pid;
57
58 save_parent = getpid ();
59
60 /* The parent and child should basically run forever without
61 tripping on any debug event. We want to check that GDB updates
62 the parent and child running states correctly right after the
63 fork. */
64 pid = fork ();
65 if (pid > 0)
66 return fork_parent ();
67 else if (pid == 0)
68 return fork_child ();
69 else
70 {
71 perror ("fork");
72 return 1;
73 }
74 }