diff options
author | Jeff Hostetler <jeffhost@microsoft.com> | 2022-03-25 19:02:52 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-03-26 00:04:15 +0100 |
commit | f67df2556f372f6095270bf870f32ff84def2e4b (patch) | |
tree | f32772c0451b017d705ac88aef2ee92159494d84 /compat/fsmonitor | |
parent | compat/fsmonitor/fsm-listen-win32: stub in backend for Windows (diff) | |
download | git-f67df2556f372f6095270bf870f32ff84def2e4b.tar.xz git-f67df2556f372f6095270bf870f32ff84def2e4b.zip |
compat/fsmonitor/fsm-listen-darwin: stub in backend for Darwin
Stub in empty implementation of fsmonitor--daemon
backend for Darwin (aka MacOS).
Signed-off-by: Jeff Hostetler <jeffhost@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'compat/fsmonitor')
-rw-r--r-- | compat/fsmonitor/fsm-listen-darwin.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/compat/fsmonitor/fsm-listen-darwin.c b/compat/fsmonitor/fsm-listen-darwin.c new file mode 100644 index 0000000000..c84e3344ab --- /dev/null +++ b/compat/fsmonitor/fsm-listen-darwin.c @@ -0,0 +1,20 @@ +#include "cache.h" +#include "fsmonitor.h" +#include "fsm-listen.h" + +int fsm_listen__ctor(struct fsmonitor_daemon_state *state) +{ + return -1; +} + +void fsm_listen__dtor(struct fsmonitor_daemon_state *state) +{ +} + +void fsm_listen__stop_async(struct fsmonitor_daemon_state *state) +{ +} + +void fsm_listen__loop(struct fsmonitor_daemon_state *state) +{ +} |