1 /* vi: set sw=4 ts=4: */
3 * Mini watchdog implementation for busybox
5 * Copyright (C) 2003 Paul Mundt <lethal@linux-sh.org>
6 * Copyright (C) 2006 Bernhard Fischer <busybox@busybox.net>
8 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
13 #define OPT_FOREGROUND 0x01
14 #define OPT_TIMER 0x02
16 /* Watchdog file descriptor */
19 static void watchdog_shutdown(int ATTRIBUTE_UNUSED unused)
21 write(fd, "V", 1); /* Magic, see watchdog-api.txt in kernel */
26 int watchdog_main(int argc, char **argv);
27 int watchdog_main(int argc, char **argv)
30 unsigned timer_duration = 30; /* Userspace timer duration, in seconds */
33 opts = getopt32(argc, argv, "Ft:", &t_arg);
36 timer_duration = xatou(t_arg);
38 /* We're only interested in the watchdog device .. */
39 if (optind < argc - 1 || argc == 1)
43 if (!(opts & OPT_FOREGROUND))
44 vfork_daemon_rexec(0, 1, argc, argv, "-F");
49 signal(SIGHUP, watchdog_shutdown);
50 signal(SIGINT, watchdog_shutdown);
52 fd = xopen(argv[argc - 1], O_WRONLY);
56 * Make sure we clear the counter before sleeping, as the counter value
57 * is undefined at this point -- PFM
60 sleep(timer_duration);