chiark / gitweb /
systemd: add hardware watchdog support
[elogind.git] / src / test-watchdog.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2012 Lennart Poettering
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU General Public License as published by
10   the Free Software Foundation; either version 2 of the License, or
11   (at your option) any later version.
12
13   systemd is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <unistd.h>
23 #include <string.h>
24
25 #include "watchdog.h"
26 #include "log.h"
27
28 int main(int argc, char *argv[]) {
29         usec_t t = 10 * USEC_PER_SEC;
30         unsigned i;
31         int r;
32
33         log_set_max_level(LOG_DEBUG);
34         log_parse_environment();
35
36         r = watchdog_set_timeout(&t);
37         if (r < 0)
38                 log_warning("Failed to open watchdog: %s", strerror(-r));
39
40         for (i = 0; i < 5; i++) {
41                 log_info("Pinging...");
42                 r = watchdog_ping();
43                 if (r < 0)
44                         log_warning("Failed to ping watchdog: %s", strerror(-r));
45
46                 usleep(t/2);
47         }
48
49         watchdog_close(true);
50         return 0;
51 }