xref: /linux/arch/um/drivers/harddog.h (revision 159a8bb06f7bb298da1aacc99975e9817e2cf02c)
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