2 This file is part of GNUnet
3 (C) 2010 Christian Grothoff (and other contributing authors)
5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; either version 3, or (at your
8 option) any later version.
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
22 * @file contrib/timeout_watchdog.c
23 * @brief small tool starting a child process, waiting that it terminates or killing it after a given timeout period
24 * @author Matthias Wachs
27 #include <sys/types.h>
37 sigchld_handler (int val)
42 waitpid (child, &status, 0);
43 if (WIFEXITED (status) != 0)
45 ret = WEXITSTATUS (status);
46 printf ("Test process exited with result %u\n", ret);
48 if (WIFSIGNALED (status) != 0)
50 ret = WTERMSIG (status);
51 printf ("Test process was signaled %u\n", ret);
57 sigint_handler (int val)
64 main (int argc, char *argv[])
72 ("arg 1: timeout in sec., arg 2: executable, arg<n> arguments\n");
76 timeout = atoi (argv[1]);
81 /* with getpgid() it does not compile, but getpgrp is the BSD version and working */
84 signal (SIGCHLD, sigchld_handler);
85 signal (SIGABRT, sigint_handler);
86 signal (SIGFPE, sigint_handler);
87 signal (SIGILL, sigint_handler);
88 signal (SIGINT, sigint_handler);
89 signal (SIGSEGV, sigint_handler);
90 signal (SIGTERM, sigint_handler);
95 /* int setpgrp(pid_t pid, pid_t pgid); is not working on this machine */
96 //setpgrp (0, pid_t gpid);
99 execvp (argv[2], &argv[2]);
105 printf ("Child processes were killed after timeout of %u seconds\n",
113 /* end of timeout_watchdog.c */