[WATCHDOG] Documentation/watchdog/src/watchdog-simple.c: improve this code

Make some improvements for Documentation/watchdog/src/watchdog-simple.c.

Signed-off-by: WANG Cong <xiyou.wangcong@gmail.com>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
WANG Cong 2007-10-06 11:17:13 +08:00 коммит произвёл Wim Van Sebroeck
Родитель c283cf2c09
Коммит 06063e26bc
1 изменённых файлов: 14 добавлений и 4 удалений

Просмотреть файл

@ -3,15 +3,25 @@
#include <unistd.h> #include <unistd.h>
#include <fcntl.h> #include <fcntl.h>
int main(int argc, const char *argv[]) { int main(void)
{
int fd = open("/dev/watchdog", O_WRONLY); int fd = open("/dev/watchdog", O_WRONLY);
int ret = 0;
if (fd == -1) { if (fd == -1) {
perror("watchdog"); perror("watchdog");
exit(1); exit(EXIT_FAILURE);
} }
while (1) { while (1) {
write(fd, "\0", 1); ret = write(fd, "\0", 1);
fsync(fd); if (ret != 1) {
ret = -1;
break;
}
ret = fsync(fd);
if (ret)
break;
sleep(10); sleep(10);
} }
close(fd);
return ret;
} }