forked from git/git
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'try-v4-fsmonitor-part4' into try-v4-fsmonitor
- Loading branch information
Showing
21 changed files
with
1,542 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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) | ||
{ | ||
} |
Oops, something went wrong.