- 论坛徽章:
- 0
|
回复 #5 sep 的帖子
int main(int argc, char *argv[])
{
fd = open("/dev/watchdog", O_WRONLY);
if (fd == -1) {
fprintf(stderr, "Watchdog device not enabled.\n");
fflush(stderr);
exit(-1);
}
if (argc > 1) {
if (!strncasecmp(argv[1], "-test", 5)) {
ioctl(fd, WDIOC_SETOPTIONS, WDIOS_ENABLECARD);
while (1){
sleep(100);
}
} else if (!strncasecmp(argv[1], "-d", 2)) {
ioctl(fd, WDIOC_SETOPTIONS, WDIOS_DISABLECARD);
fprintf(stderr, "Watchdog card disabled.\n");
} else if (!strncasecmp(argv[1], "-e", 2)) {
ioctl(fd, WDIOC_SETOPTIONS, WDIOS_ENABLECARD);
fprintf(stderr, "Watchdog card enabled.\n");
} else if (!strncasecmp(argv[1], "-t", 2) && (argc > 2)) {
timeout = atoi(argv[2]);
ioctl(fd, WDIOC_SETTIMEOUT, &timeout);
fprintf(stderr, "Set timeout %s sec.\n", argv[2]);
} else {
fprintf(stderr, "-d to disable, -e to enable, -t val to set timeout.\n");
fprintf(stderr, "run by itself to tick the card.\n");
}
fflush(stderr);
exit(0);
} else {
fprintf(stderr, "Watchdog Ticking Away!\n");
fflush(stderr);
}
while(1) {
keep_alive();
sleep(1);
}
}
我运行:./wdt_test -test
是先open后ioctl设置为ENABLECARD
的
还是不会reset |
|