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