1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef UM_WATCHDOG_H 3 #define UM_WATCHDOG_H 4 5 int start_watchdog(int *in_fd_ret, int *out_fd_ret, char *sock); 6 void stop_watchdog(int in_fd, int out_fd); 7 int ping_watchdog(int fd); 8 9 #endif /* UM_WATCHDOG_H */ 10