Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fsm-health-darwin.c « fsmonitor « compat - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b9f709e854833f67b45725e1684abe2ef06e16ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "cache.h"
#include "config.h"
#include "fsmonitor.h"
#include "fsm-health.h"
#include "fsmonitor--daemon.h"

int fsm_health__ctor(struct fsmonitor_daemon_state *state)
{
	return 0;
}

void fsm_health__dtor(struct fsmonitor_daemon_state *state)
{
	return;
}

void fsm_health__loop(struct fsmonitor_daemon_state *state)
{
	return;
}

void fsm_health__stop_async(struct fsmonitor_daemon_state *state)
{
}