[WATCHDOG] doc: watchdog simple example: don't fail on fsync()

Don't terminate the watchdog daemon when fsync() fails because no
watchdog driver actually implements the fsync() syscall.

Signed-off-by: Giel van Schijndel <me@mortis.eu>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
tirimbino
Giel van Schijndel 15 years ago committed by Wim Van Sebroeck
parent 5e80371664
commit cf9cf9aed1
  1. 3
      Documentation/watchdog/src/watchdog-simple.c

@ -17,9 +17,6 @@ int main(void)
ret = -1;
break;
}
ret = fsync(fd);
if (ret)
break;
sleep(10);
}
close(fd);

Loading…
Cancel
Save