harddog.h 247 B

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