hint at where the Magic comes from
authorMike Frysinger <vapier@gentoo.org>
Wed, 7 Jun 2006 21:37:49 +0000 (21:37 -0000)
committerMike Frysinger <vapier@gentoo.org>
Wed, 7 Jun 2006 21:37:49 +0000 (21:37 -0000)
miscutils/watchdog.c

index 55fee8a40cce6d121ed69f02cf6195539f8cd7df..b9eabb14584777149b1e19779ae6cd726bfdef84 100644 (file)
@@ -20,7 +20,7 @@ static int fd;
 
 static void watchdog_shutdown(int ATTRIBUTE_UNUSED unused)
 {
-       write(fd, "V", 1);      /* Magic */
+       write(fd, "V", 1);      /* Magic, see watchdog-api.txt in kernel */
        close(fd);
        exit(0);
 }