public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [Patch]Documentation/watchdog/src/watchdog-simple.c: improve this code
@ 2007-10-06  3:17 WANG Cong
  0 siblings, 0 replies; only message in thread
From: WANG Cong @ 2007-10-06  3:17 UTC (permalink / raw)
  To: LKML; +Cc: Wim Van Sebroeck, Andrew Morton


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

CC: Wim Van Sebroeck <wim@iguana.be>
Signed-off-by: WANG Cong <xiyou.wangcong@gmail.com>

---
 Documentation/watchdog/src/watchdog-simple.c |   17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)

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

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-10-06  3:23 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-06  3:17 [Patch]Documentation/watchdog/src/watchdog-simple.c: improve this code WANG Cong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox