Raw
1 #include "git-compat-util.h"
2 #include "config.h"
3 #include "fsmonitor-ll.h"
4 #include "fsm-health.h"
5 #include "fsmonitor--daemon.h"
6
7 int fsm_health__ctor(struct fsmonitor_daemon_state *state UNUSED)
8 {
9 return 0;
10 }
11
12 void fsm_health__dtor(struct fsmonitor_daemon_state *state UNUSED)
13 {
14 return;
15 }
16
17 void fsm_health__loop(struct fsmonitor_daemon_state *state UNUSED)
18 {
19 return;
20 }
21
22 void fsm_health__stop_async(struct fsmonitor_daemon_state *state UNUSED)
23 {
24 }