aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-12-14 14:49:06 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-12-14 14:49:06 +0000
commit005ff882ba2760f5e85a521ed41360f58163f14c (patch)
tree7a83d25837ec262fc3946179ef10a514aac26a18
parentab6b446e9567db741b463f74afb7d98cc583c4b9 (diff)
downloadbusybox-w32-005ff882ba2760f5e85a521ed41360f58163f14c.tar.gz
busybox-w32-005ff882ba2760f5e85a521ed41360f58163f14c.tar.bz2
busybox-w32-005ff882ba2760f5e85a521ed41360f58163f14c.zip
watchdog: build fixes, no code changes
-rw-r--r--miscutils/watchdog.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/miscutils/watchdog.c b/miscutils/watchdog.c
index 75a399f24..f85138e11 100644
--- a/miscutils/watchdog.c
+++ b/miscutils/watchdog.c
@@ -10,6 +10,7 @@
10 */ 10 */
11 11
12#include "libbb.h" 12#include "libbb.h"
13#include "linux/types.h" /* for __u32 */
13#include "linux/watchdog.h" 14#include "linux/watchdog.h"
14 15
15#define OPT_FOREGROUND (1 << 0) 16#define OPT_FOREGROUND (1 << 0)
@@ -57,7 +58,11 @@ int watchdog_main(int argc, char **argv)
57 58
58 /* WDIOC_SETTIMEOUT takes seconds, not milliseconds */ 59 /* WDIOC_SETTIMEOUT takes seconds, not milliseconds */
59 htimer_duration = htimer_duration / 1000; 60 htimer_duration = htimer_duration / 1000;
61#ifndef WDIOC_SETTIMEOUT
62#error WDIOC_SETTIMEOUT is not defined, cannot compile watchdog applet
63#else
60 ioctl_or_warn(3, WDIOC_SETTIMEOUT, &htimer_duration); 64 ioctl_or_warn(3, WDIOC_SETTIMEOUT, &htimer_duration);
65#endif
61#if 0 66#if 0
62 ioctl_or_warn(3, WDIOC_GETTIMEOUT, &htimer_duration); 67 ioctl_or_warn(3, WDIOC_GETTIMEOUT, &htimer_duration);
63 printf("watchdog: SW timer is %dms, HW timer is %dms\n", 68 printf("watchdog: SW timer is %dms, HW timer is %dms\n",
@@ -70,8 +75,8 @@ int watchdog_main(int argc, char **argv)
70 75
71 while (1) { 76 while (1) {
72 /* 77 /*
73 * Make sure we clear the counter before sleeping, as the counter value 78 * Make sure we clear the counter before sleeping,
74 * is undefined at this point -- PFM 79 * as the counter value is undefined at this point -- PFM
75 */ 80 */
76 write(3, "", 1); /* write zero byte */ 81 write(3, "", 1); /* write zero byte */
77 usleep(stimer_duration * 1000L); 82 usleep(stimer_duration * 1000L);