]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/test/test-watchdog.c
treewide: auto-convert the simple cases to log_*_errno()
[thirdparty/systemd.git] / src / test / test-watchdog.c
CommitLineData
e96d6be7
LP
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
5430f7f2
LP
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
e96d6be7
LP
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
5430f7f2 16 Lesser General Public License for more details.
e96d6be7 17
5430f7f2 18 You should have received a copy of the GNU Lesser General Public License
e96d6be7
LP
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
28int 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)
0a1beeb6 38 log_warning_errno(-r, "Failed to open watchdog: %m");
e96d6be7
LP
39
40 for (i = 0; i < 5; i++) {
41 log_info("Pinging...");
42 r = watchdog_ping();
43 if (r < 0)
0a1beeb6 44 log_warning_errno(-r, "Failed to ping watchdog: %m");
e96d6be7
LP
45
46 usleep(t/2);
47 }
48
49 watchdog_close(true);
50 return 0;
51}