diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-10-04 16:40:17 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-10-04 16:40:17 +0000 |
commit | 93d0776a96919a94fca51fe2cfd9530d8c9dcbb9 (patch) | |
tree | a9714be0d4c6b22c97c63db94b26e934a0338d06 /miscutils/watchdog.c | |
parent | c2d5a27b622d5a048a3cf175e51f8b4b2b9e9757 (diff) | |
download | busybox-w32-93d0776a96919a94fca51fe2cfd9530d8c9dcbb9.tar.gz busybox-w32-93d0776a96919a94fca51fe2cfd9530d8c9dcbb9.tar.bz2 busybox-w32-93d0776a96919a94fca51fe2cfd9530d8c9dcbb9.zip |
watchdog: WDIOC_SETTIMEOUT accepts seconds, not milliseconds
klogd: handle many lines at once, by Steve Bennett (steveb AT workware.net.au)
Diffstat (limited to 'miscutils/watchdog.c')
-rw-r--r-- | miscutils/watchdog.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/miscutils/watchdog.c b/miscutils/watchdog.c index 9bcd4b874..75a399f24 100644 --- a/miscutils/watchdog.c +++ b/miscutils/watchdog.c | |||
@@ -55,6 +55,8 @@ int watchdog_main(int argc, char **argv) | |||
55 | /* Use known fd # - avoid needing global 'int fd' */ | 55 | /* Use known fd # - avoid needing global 'int fd' */ |
56 | xmove_fd(xopen(argv[argc - 1], O_WRONLY), 3); | 56 | xmove_fd(xopen(argv[argc - 1], O_WRONLY), 3); |
57 | 57 | ||
58 | /* WDIOC_SETTIMEOUT takes seconds, not milliseconds */ | ||
59 | htimer_duration = htimer_duration / 1000; | ||
58 | ioctl_or_warn(3, WDIOC_SETTIMEOUT, &htimer_duration); | 60 | ioctl_or_warn(3, WDIOC_SETTIMEOUT, &htimer_duration); |
59 | #if 0 | 61 | #if 0 |
60 | ioctl_or_warn(3, WDIOC_GETTIMEOUT, &htimer_duration); | 62 | ioctl_or_warn(3, WDIOC_GETTIMEOUT, &htimer_duration); |