1 /* This testcase is part of GDB, the GNU debugger.
3 Copyright 2015-2019 Free Software Foundation, Inc.
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.
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.
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/>. */
20 #include <sys/types.h>
26 /* Variable set by GDB. If true, then a fork child (or parent) exits
27 if its parent (or child) exits. Otherwise the process waits
28 forever until either GDB or the alarm kills it. */
29 volatile int exit_if_relative_exits
= 0;
31 /* The fork child. Just runs forever. */
36 /* Don't run forever. */
41 if (exit_if_relative_exits
)
45 /* Exit if GDB kills the parent. */
46 if (getppid () != save_parent
)
48 if (kill (getppid (), 0) != 0)
58 /* The fork parent. Just runs forever. */
63 /* Don't run forever. */
68 if (exit_if_relative_exits
)
70 int res
= wait (NULL
);
71 if (res
== -1 && errno
== EINTR
)
93 save_parent
= getpid ();
95 /* The parent and child should basically run forever without
96 tripping on any debug event. We want to check that GDB updates
97 the parent and child running states correctly right after the
101 return fork_parent ();
103 return fork_child ();