| 257 | } |
| 258 | |
| 259 | static int start_fsmonitor_daemon(void) |
| 260 | { |
| 261 | ASSERT(have_fsmonitor_support()); |
| 262 | |
| 263 | if (fsmonitor_ipc__get_state() != IPC_STATE__LISTENING) |
| 264 | return run_git("fsmonitor--daemon", "start", NULL); |
| 265 | |
| 266 | return 0; |
| 267 | } |
| 268 | |
| 269 | static int stop_fsmonitor_daemon(void) |
| 270 | { |
no test coverage detected