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